From 9064d13e1cc7562371691cc45be50b4cd6ab076a Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Tue, 27 Aug 2019 12:09:49 +0200 Subject: [PATCH 01/13] events: Add events workflow using libmozevent --- .isort.cfg | 4 +- .taskcluster.yml | 20 ++++ events/VERSION | 1 + events/code_coverage_events/__init__.py | 4 + events/code_coverage_events/cli.py | 105 ++++++++++++++++++++ events/code_coverage_events/workflow.py | 125 ++++++++++++++++++++++++ events/requirements-dev.txt | 2 + events/requirements.txt | 1 + events/setup.py | 50 ++++++++++ 9 files changed, 310 insertions(+), 2 deletions(-) create mode 100644 events/VERSION create mode 100644 events/code_coverage_events/__init__.py create mode 100644 events/code_coverage_events/cli.py create mode 100644 events/code_coverage_events/workflow.py create mode 100644 events/requirements-dev.txt create mode 100644 events/requirements.txt create mode 100644 events/setup.py diff --git a/.isort.cfg b/.isort.cfg index 028d5a09d..7561560b1 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -1,6 +1,6 @@ [settings] -known_first_party = code_coverage_backend,code_coverage_bot,code_coverage_tools,conftest -known_third_party = connexion,datadog,dateutil,fakeredis,flask,flask_cors,flask_talisman,google,hglib,jsone,jsonschema,libmozdata,logbook,pytest,pytz,raven,redis,requests,responses,setuptools,structlog,taskcluster,werkzeug,zstandard +known_first_party = code_coverage_backend,code_coverage_bot,code_coverage_events,code_coverage_tools,conftest +known_third_party = connexion,datadog,dateutil,fakeredis,flask,flask_cors,flask_talisman,google,hglib,jsone,jsonschema,libmozdata,libmozevent,logbook,pytest,pytz,raven,redis,requests,responses,setuptools,structlog,taskcluster,werkzeug,zstandard force_single_line = True default_section=FIRSTPARTY line_length=159 diff --git a/.taskcluster.yml b/.taskcluster.yml index bb53a1d66..e291ea1b7 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -116,6 +116,26 @@ tasks: owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage + - taskId: {$eval: as_slugid("events_check_tests")} + provisionerId: aws-provisioner-v1 + workerType: github-worker + created: {$fromNow: ''} + deadline: {$fromNow: '1 hour'} + payload: + maxRunTime: 3600 + image: python:3 + command: + - sh + - -lxce + - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && + cd /src/events && pip install --quiet . && pip install --quiet -r requirements-dev.txt && + pytest -v" + metadata: + name: "Code Coverage Events checks: unit tests" + description: Check python code with pytest + owner: bastien@mozilla.com + source: https://github.com/mozilla/code-coverage + - taskId: {$eval: as_slugid("backend_build")} created: {$fromNow: ''} deadline: {$fromNow: '1 hour'} diff --git a/events/VERSION b/events/VERSION new file mode 100644 index 000000000..3eefcb9dd --- /dev/null +++ b/events/VERSION @@ -0,0 +1 @@ +1.0.0 diff --git a/events/code_coverage_events/__init__.py b/events/code_coverage_events/__init__.py new file mode 100644 index 000000000..187193dfe --- /dev/null +++ b/events/code_coverage_events/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- + +QUEUE_MONITORING = "monitoring" +QUEUE_PULSE = "pulse" diff --git a/events/code_coverage_events/cli.py b/events/code_coverage_events/cli.py new file mode 100644 index 000000000..d692b17b6 --- /dev/null +++ b/events/code_coverage_events/cli.py @@ -0,0 +1,105 @@ +# -*- coding: utf-8 -*- +import argparse +import asyncio +import os + +import structlog +from libmozevent import taskcluster_config +from libmozevent.bus import MessageBus +from libmozevent.log import init_logger +from libmozevent.monitoring import Monitoring +from libmozevent.pulse import PulseListener +from libmozevent.pulse import run_consumer + +from code_coverage_events import QUEUE_MONITORING +from code_coverage_events import QUEUE_PULSE +from code_coverage_events.workflow import CodeCoverage + +logger = structlog.get_logger(__name__) + + +def parse_cli(): + """ + Setup CLI options parser + """ + parser = argparse.ArgumentParser(description="Mozilla Code Review Bot") + parser.add_argument( + "--taskcluster-secret", + help="Taskcluster Secret path", + default=os.environ.get("TASKCLUSTER_SECRET"), + ) + parser.add_argument("--taskcluster-client-id", help="Taskcluster Client ID") + parser.add_argument("--taskcluster-access-token", help="Taskcluster Access token") + return parser.parse_args() + + +class Events(object): + """ + Listen to pulse events and trigger new code coverage tasks + """ + + def __init__(self): + # Create message bus shared amongst process + self.bus = MessageBus() + + # Build code coverage workflow + self.workflow = CodeCoverage( + taskcluster_config.secrets["hook_id"], + taskcluster_config.secrets["hook_group_id"], + self.bus, + ) + + # Setup monitoring for newly created tasks + self.monitoring = Monitoring( + QUEUE_MONITORING, taskcluster_config.secrets["admins"], 7 * 3600 + ) + self.monitoring.register(self.bus) + + # Create pulse listener for code coverage + self.pulse = PulseListener( + QUEUE_PULSE, + "exchange/taskcluster-queue/v1/task-group-resolved", + "#", + taskcluster_config.secrets["pulse_user"], + taskcluster_config.secrets["pulse_password"], + ) + self.pulse.register(self.bus) + + def run(self): + + consumers = [ + # Code coverage main workflow + self.workflow.run(), + # Add monitoring task + self.monitoring.run(), + # Add pulse task + self.pulse.run(), + ] + + # Run all tasks concurrently + run_consumer(asyncio.gather(*consumers)) + + +def main(): + args = parse_cli() + taskcluster_config.auth(args.taskcluster_client_id, args.taskcluster_access_token) + taskcluster_config.load_secrets( + args.taskcluster_secret, + "events", + required=("pulse_user", "pulse_password", "hook_id", "hook_group_id"), + existing=dict(admins=["babadie@mozilla.com", "mcastelluccio@mozilla.com"]), + ) + + init_logger( + "code_coverage_events", + PAPERTRAIL_HOST=taskcluster_config.secrets.get("PAPERTRAIL_HOST"), + PAPERTRAIL_PORT=taskcluster_config.secrets.get("PAPERTRAIL_PORT"), + SENTRY_DSN=taskcluster_config.secrets.get("SENTRY_DSN"), + ) + + events = Events() + events.run() + + +if __name__ == "__main__": + main() diff --git a/events/code_coverage_events/workflow.py b/events/code_coverage_events/workflow.py new file mode 100644 index 000000000..35c632421 --- /dev/null +++ b/events/code_coverage_events/workflow.py @@ -0,0 +1,125 @@ +# -*- coding: utf-8 -*- + +import requests +import structlog +from libmozevent import taskcluster_config +from libmozevent.utils import retry + +from code_coverage_events import QUEUE_MONITORING +from code_coverage_events import QUEUE_PULSE + +logger = structlog.get_logger(__name__) + + +class CodeCoverage(object): + """ + Taskcluster hook handling the code coverage + """ + + def __init__(self, hook_id, hook_group_id, bus): + self.triggered_groups = set() + self.group_id = hook_group_id + self.hook_id = hook_id + self.bus = bus + + # Setup TC services + self.queue = taskcluster_config.get_service("queue") + self.hooks = taskcluster_config.get_service("hooks") + + async def run(self): + """ + Main consumer, running queued payloads from the pulse listener + """ + while True: + # Get next payload from pulse messages + payload = await self.bus.receive(QUEUE_PULSE) + + # Parse the payload to extract a new task's environment + envs = self.parse(payload) + if envs is None: + continue + + for env in envs: + # Trigger new tasks + task = self.hooks.triggerHook(self.group_id, self.hook_id, env) + task_id = task["status"]["taskId"] + logger.info("Triggered a new code coverage task", id=task_id) + + # Send task to monitoring + await self.bus.send( + QUEUE_MONITORING, (self.group_id, self.hook_id, task_id) + ) + + def is_coverage_task(self, task): + return any( + task["task"]["metadata"]["name"].startswith(s) + for s in ["build-linux64-ccov", "build-win64-ccov"] + ) + + def get_build_task_in_group(self, group_id): + if group_id in self.triggered_groups: + logger.info( + "Received duplicated groupResolved notification", group=group_id + ) + return None + + def maybe_trigger(tasks): + for task in tasks: + if self.is_coverage_task(task): + self.triggered_groups.add(group_id) + return task + + return None + + def retrieve_coverage_task(limit=200): + reply = self.queue.listTaskGroup(group_id, limit=limit) + task = maybe_trigger(reply["tasks"]) + + while task is None and reply.get("continuationToken") is not None: + reply = self.queue.listTaskGroup( + group_id, limit=limit, continuationToken=reply["continuationToken"] + ) + task = maybe_trigger(reply["tasks"]) + + return task + + try: + return retry(retrieve_coverage_task) + except requests.exceptions.HTTPError: + return None + + def parse(self, body): + """ + Extract revisions from payload + """ + taskGroupId = body["taskGroupId"] + + build_task = self.get_build_task_in_group(taskGroupId) + if build_task is None: + return None + + repository = build_task["task"]["payload"]["env"]["GECKO_HEAD_REPOSITORY"] + + if repository not in [ + "https://hg.mozilla.org/mozilla-central", + "https://hg.mozilla.org/try", + ]: + logger.warn( + "Received groupResolved notification for a coverage task in an unexpected branch", + repository=repository, + ) + return None + + logger.info( + "Received groupResolved notification for coverage builds", + repository=repository, + revision=build_task["task"]["payload"]["env"]["GECKO_HEAD_REV"], + group=taskGroupId, + ) + + return [ + { + "REPOSITORY": repository, + "REVISION": build_task["task"]["payload"]["env"]["GECKO_HEAD_REV"], + } + ] diff --git a/events/requirements-dev.txt b/events/requirements-dev.txt new file mode 100644 index 000000000..208ec64cd --- /dev/null +++ b/events/requirements-dev.txt @@ -0,0 +1,2 @@ +pytest +responses diff --git a/events/requirements.txt b/events/requirements.txt new file mode 100644 index 000000000..8ca233c91 --- /dev/null +++ b/events/requirements.txt @@ -0,0 +1 @@ +https://github.com/La0/libmozevent/archive/taskcluster.zip#egg=libmozevent diff --git a/events/setup.py b/events/setup.py new file mode 100644 index 000000000..9d5ce5365 --- /dev/null +++ b/events/setup.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +import setuptools + + +def read_requirements(file_): + lines = [] + with open(file_) as f: + for line in f.readlines(): + line = line.strip() + if ( + line.startswith("-e ") + or line.startswith("http://") + or line.startswith("https://") + ): + extras = "" + if "[" in line: + extras = "[" + line.split("[")[1].split("]")[0] + "]" + line = line.split("#")[1].split("egg=")[1] + extras + elif line == "" or line.startswith("#") or line.startswith("-"): + continue + line = line.split("#")[0].strip() + lines.append(line) + return sorted(list(set(lines))) + + +with open("VERSION") as f: + VERSION = f.read().strip() + + +setuptools.setup( + name="code_coverage_events", + version=VERSION, + description="Listens to a pulse queue and trigger code coverage tasks", + author="Mozilla Release Management", + author_email="release-mgmt-analysis@mozilla.com", + url="https://github.com/mozilla/code-coverage", + tests_require=read_requirements("requirements-dev.txt"), + install_requires=read_requirements("requirements.txt"), + packages=setuptools.find_packages(), + include_package_data=True, + zip_safe=False, + license="MPL2", + entry_points={ + "console_scripts": ["code-coverage-events = code_coverage_events.cli:main"] + }, +) From 9c560ceb7e22d1b5fd530a628f01377791df54fd Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Tue, 27 Aug 2019 12:10:06 +0200 Subject: [PATCH 02/13] events: Add unit test --- events/tests/conftest.py | 22 + .../fixtures/FG3goVnCQfif8ZEOaM_4IA.json | 907 + .../fixtures/MibGDsa4Q7uFNzDf7EV6nw.json | 30337 +++++++++++++++ .../fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json | 30709 ++++++++++++++++ .../fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json | 29383 +++++++++++++++ events/tests/test_workflow.py | 142 + 6 files changed, 91500 insertions(+) create mode 100644 events/tests/conftest.py create mode 100644 events/tests/fixtures/FG3goVnCQfif8ZEOaM_4IA.json create mode 100644 events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json create mode 100644 events/tests/fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json create mode 100644 events/tests/fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json create mode 100644 events/tests/test_workflow.py diff --git a/events/tests/conftest.py b/events/tests/conftest.py new file mode 100644 index 000000000..897531076 --- /dev/null +++ b/events/tests/conftest.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +import pytest +import responses +from libmozevent import taskcluster_config + + +@pytest.fixture +def mock_taskcluster(): + """ + Mock Tasklcuster authentication + """ + taskcluster_config.options = {"rootUrl": "http://taskcluster.test"} + + responses.add( + responses.GET, + "https://queue.taskcluster.net/v1/task-group/aGroup/list", + json={"taskGroupId": "aGroup", "tasks": []}, + ) diff --git a/events/tests/fixtures/FG3goVnCQfif8ZEOaM_4IA.json b/events/tests/fixtures/FG3goVnCQfif8ZEOaM_4IA.json new file mode 100644 index 000000000..2cd7148ba --- /dev/null +++ b/events/tests/fixtures/FG3goVnCQfif8ZEOaM_4IA.json @@ -0,0 +1,907 @@ +{ + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "tasks": [ + { + "status": { + "taskId": "CGF4HL32ROmCfePv0mteJA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.619Z", + "expires": "2019-01-08T10:11:05.619Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a63299678506fd19", + "takenUntil": "2018-12-11T10:31:22.621Z", + "scheduled": "2018-12-11T10:11:22.237Z", + "started": "2018-12-11T10:11:22.696Z", + "resolved": "2018-12-11T10:16:15.726Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "Y_m4ihw8S5e3vMSK59-4Kg", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.619Z", + "deadline": "2018-12-12T10:11:05.619Z", + "expires": "2019-01-08T10:11:05.619Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-1-checkouts-v3-2f7c6cb7dd63ce826370" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Y_m4ihw8S5e3vMSK59-4Kg" + }, + "cache": { + "level-1-checkouts-v3-2f7c6cb7dd63ce826370": "/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 codespell -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_UNTRUSTED_CACHES": "1", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_SCM_LEVEL": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_PROXY_URL": "http://taskcluster/", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/source-test", + "description": "Checks for misspellings in text files ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "source-test-mozlint-codespell" + }, + "tags": { + "os": "linux", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-codespell" + }, + "extra": { + "index": { + "rank": 1544522872 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "spell", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "treeherder-platform": "lint/opt", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + }, + { + "status": { + "taskId": "FG3goVnCQfif8ZEOaM_4IA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-1-decision", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:08:27.733Z", + "expires": "2019-12-11T10:08:28.733Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a71482354635cfdb", + "takenUntil": "2018-12-11T10:28:29.149Z", + "scheduled": "2018-12-11T10:08:28.452Z", + "started": "2018-12-11T10:08:29.228Z", + "resolved": "2018-12-11T10:11:20.724Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-1-decision", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031", + "index.gecko.v2.try.latest.taskgraph.decision", + "index.gecko.v2.try.revision.066cb18ba95a7efe144e729713c429e422d9f95b.taskgraph.decision", + "index.gecko.v2.try.pushlog-id.321031.decision", + "notify.email.mcastelluccio@mozilla.com.on-failed", + "notify.email.mcastelluccio@mozilla.com.on-exception", + "notify.email.mcastelluccio@mozilla.com.on-completed", + "notify.email.ciduty+failedcron@mozilla.com.on-failed", + "notify.email.ciduty+exceptioncron@mozilla.com.on-exception", + "notify.email.sheriffs+failedcron@mozilla.com.on-failed", + "notify.email.sheriffs+exceptioncron@mozilla.com.on-exception", + "index.gecko.v2.try.latest.firefox.decision", + "index.gecko.v2.try.revision.066cb18ba95a7efe144e729713c429e422d9f95b.firefox.decision" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:08:27.733Z", + "deadline": "2018-12-12T10:08:27.733Z", + "expires": "2019-12-11T10:08:28.733Z", + "scopes": [ + "assume:repo:hg.mozilla.org/try:branch:default", + "queue:route:notify.email.mcastelluccio@mozilla.com.*", + "in-tree:hook-action:project-gecko/in-tree-action-1-*" + ], + "payload": { + "env": { + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "GECKO_HEAD_REF": "066cb18ba95a7efe144e729713c429e422d9f95b", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "GECKO_COMMIT_MSG": " ", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts" + }, + "cache": { + "level-1-checkouts-sparse-v2": "/builds/worker/checkouts" + }, + "features": { + "taskclusterProxy": true, + "chainOfTrust": true + }, + "image": "taskcluster/decision:2.1.0@sha256:6db3b697d7a3c7aba440d72f04199331b872111cefff57206b8b8b1d53230360", + "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='321031' --pushdate='1544522872' --project='try' --message=\"$GECKO_COMMIT_MSG\" --owner='mcastelluccio@mozilla.com' --level='1' --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-12-11T10:08:27.733Z" + } + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/raw-file/066cb18ba95a7efe144e729713c429e422d9f95b/.taskcluster.yml", + "name": "Gecko Decision Task", + "description": "The task that creates all of the other tasks in the task graph" + }, + "tags": { + "createdForUser": "mcastelluccio@mozilla.com", + "kind": "decision-task" + }, + "extra": { + "treeherder": { + "machine": { + "platform": "gecko-decision" + }, + "symbol": "D" + }, + "tasks_for": "hg-push", + "notify": { + "email": { + "subject": "Thank you for your try submission of 066cb18ba95a7efe144e729713c429e422d9f95b. It's the best!", + "content": "Your try push has been submitted. It's the best! Use the link to view the status of your jobs.", + "link": { + "text": "Treeherder Jobs", + "href": "https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b" + } + } + } + } + } + }, + { + "status": { + "taskId": "PUFNU67jRam5F7iCrt2j3w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.621Z", + "expires": "2019-01-08T10:11:05.621Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fae3aa88fa21d081", + "takenUntil": "2018-12-11T10:31:22.622Z", + "scheduled": "2018-12-11T10:11:22.234Z", + "started": "2018-12-11T10:11:22.695Z", + "resolved": "2018-12-11T10:19:43.195Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "Y_m4ihw8S5e3vMSK59-4Kg", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.621Z", + "deadline": "2018-12-12T10:11:05.621Z", + "expires": "2019-01-08T10:11:05.621Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-1-checkouts-v3-2f7c6cb7dd63ce826370" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Y_m4ihw8S5e3vMSK59-4Kg" + }, + "cache": { + "level-1-checkouts-v3-2f7c6cb7dd63ce826370": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko/testing/mozharness && /usr/local/bin/tox -e py27-hg4.3\n" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_UNTRUSTED_CACHES": "1", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_SCM_LEVEL": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_PROXY_URL": "http://taskcluster/", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/source-test", + "description": "mozharness integration tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "source-test-python-mozharness" + }, + "tags": { + "os": "linux", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-python-mozharness" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "py2", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Python 2 unit tests", + "tier": 2, + "symbol": "mh" + }, + "treeherder-platform": "linux64/opt", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + }, + { + "status": { + "taskId": "QyFZC5C9SQOt9TBRHMcpxA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.624Z", + "expires": "2019-01-08T10:11:05.624Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-2", + "workerId": "i-0a5116e8de8e8add4", + "takenUntil": "2018-12-11T10:31:22.570Z", + "scheduled": "2018-12-11T10:11:22.246Z", + "started": "2018-12-11T10:11:22.642Z", + "resolved": "2018-12-11T10:16:09.297Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "Y_m4ihw8S5e3vMSK59-4Kg", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.624Z", + "deadline": "2018-12-12T10:11:05.624Z", + "expires": "2019-01-08T10:11:05.624Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-1-checkouts-v3-2f7c6cb7dd63ce826370" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Y_m4ihw8S5e3vMSK59-4Kg" + }, + "cache": { + "level-1-checkouts-v3-2f7c6cb7dd63ce826370": "/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 py2 -l py3 -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_UNTRUSTED_CACHES": "1", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_SCM_LEVEL": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_PROXY_URL": "http://taskcluster/", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/source-test", + "description": "lint for python 2/3 compatibility issues ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "source-test-mozlint-py-compat" + }, + "tags": { + "os": "linux", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-py-compat" + }, + "extra": { + "index": { + "rank": 1544522872 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "py-compat", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "treeherder-platform": "lint/opt", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + }, + { + "status": { + "taskId": "VL1MYVzXTCG7mb1T4KQPFQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-1-b-win2012", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.617Z", + "expires": "2019-01-08T10:11:05.617Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-02fac43eb0f70fb8a", + "takenUntil": "2018-12-11T11:58:27.510Z", + "scheduled": "2018-12-11T10:11:22.243Z", + "started": "2018-12-11T10:13:21.632Z", + "resolved": "2018-12-11T11:40:40.329Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-1-b-win2012", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "DKX3WtmHQ2CVtC9Nx9SNeg", + "FgbbQOd1SyOxgC-gy3YGyA", + "Fw-4UcpQTSy3YBubzvebMA", + "ImgJmzyISt-3TsObD8sTuA", + "N2yhA4J1Sc-cgh2q8cbbZA", + "eATwvbMqSoaZ1LEe6VKksA", + "ecwec-MXT_W7RkzIgUFp0Q", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.try.latest.firefox.win64-ccov-debug", + "index.gecko.v2.try.pushdate.2018.12.11.20181211100752.firefox.win64-ccov-debug", + "index.gecko.v2.try.pushlog-id.321031.firefox.win64-ccov-debug", + "index.gecko.v2.try.revision.066cb18ba95a7efe144e729713c429e422d9f95b.firefox.win64-ccov-debug", + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.617Z", + "deadline": "2018-12-12T10:11:05.617Z", + "expires": "2019-01-08T10:11:05.617Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint" + ], + "payload": { + "maxRunTime": 7200, + "artifacts": [ + { + "path": "build\\src\\obj-firefox\\code-coverage-grcov.zip", + "type": "file", + "name": "public/code-coverage-grcov.zip" + }, + { + "path": "logs", + "type": "directory", + "name": "public/logs" + }, + { + "path": "public/build", + "type": "directory", + "name": "public/build" + } + ], + "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 066cb18ba95a7efe144e729713c429e422d9f95b https://hg.mozilla.org/try .\\build\\src", + ":: TinderboxPrint:066cb18ba95a7efe144e729713c429e422d9f95b\n", + "c:\\mozilla-build\\python3\\python3.exe build\\src\\taskcluster\\scripts\\misc\\fetch-content task-artifacts", + "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\\ccov_debug.py --branch try --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "features": { + "chainOfTrust": true + }, + "env": { + "MH_BRANCH": "try", + "MOZ_BUILD_DATE": "20181211100752", + "TRY_COMMIT_MSG": " ", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@ecwec-MXT_W7RkzIgUFp0Q public/build/rustc.tar.bz2@DKX3WtmHQ2CVtC9Nx9SNeg public/build/rust-size.tar.bz2@FgbbQOd1SyOxgC-gy3YGyA public/build/cbindgen.tar.bz2@eATwvbMqSoaZ1LEe6VKksA public/build/sccache2.tar.bz2@ImgJmzyISt-3TsObD8sTuA public/build/node.tar.bz2@N2yhA4J1Sc-cgh2q8cbbZA", + "MOZ_SOURCE_CHANGESET": "066cb18ba95a7efe144e729713c429e422d9f95b", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "MOZ_SCM_LEVEL": "1", + "EXTRA_MOZHARNESS_CONFIG": "{\"mozconfig_variant\": \"code-coverage\"}", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "SCCACHE_IDLE_TIMEOUT": "0", + "MOZ_FETCHES": "[{\"artifact\": \"public/build/grcov.tar.bz2\", \"extract\": true, \"task\": \"Fw-4UcpQTSy3YBubzvebMA\"}]", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "USE_SCCACHE": "1", + "MOZ_FETCHES_DIR": "fetches", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZ_DISABLE_FULL_SYMBOLS": "1" + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/build", + "description": "Win64 Debug Code Coverage ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "build-win64-ccov/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-ccov/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "ccov": true + } + }, + "treeherder-platform": "windows2012-64/ccov", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + }, + { + "status": { + "taskId": "XO44zQK5Sk-gRT2awyV9VQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.622Z", + "expires": "2019-01-08T10:11:05.622Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0125a8755d0f5b579", + "takenUntil": "2018-12-11T10:31:22.623Z", + "scheduled": "2018-12-11T10:11:22.227Z", + "started": "2018-12-11T10:11:22.694Z", + "resolved": "2018-12-11T10:16:06.499Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "Y_m4ihw8S5e3vMSK59-4Kg", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.622Z", + "deadline": "2018-12-12T10:11:05.622Z", + "expires": "2019-01-08T10:11:05.622Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-1-checkouts-v3-2f7c6cb7dd63ce826370" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Y_m4ihw8S5e3vMSK59-4Kg" + }, + "cache": { + "level-1-checkouts-v3-2f7c6cb7dd63ce826370": "/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": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_UNTRUSTED_CACHES": "1", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_SCM_LEVEL": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_PROXY_URL": "http://taskcluster/", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/source-test", + "description": "yamllint run over the gecko codebase ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "source-test-mozlint-yaml" + }, + "tags": { + "os": "linux", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-yaml" + }, + "extra": { + "index": { + "rank": 1544522872 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "yaml", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "treeherder-platform": "lint/opt", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + }, + { + "status": { + "taskId": "a_RES_SWSHKTuBu9qcUtJQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "deadline": "2018-12-12T10:11:05.616Z", + "expires": "2019-01-08T10:11:05.616Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-006805e64def7cade", + "takenUntil": "2018-12-11T10:31:22.622Z", + "scheduled": "2018-12-11T10:11:22.232Z", + "started": "2018-12-11T10:11:22.694Z", + "resolved": "2018-12-11T10:16:49.825Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-1", + "taskGroupId": "FG3goVnCQfif8ZEOaM_4IA", + "dependencies": [ + "Y_m4ihw8S5e3vMSK59-4Kg", + "FG3goVnCQfif8ZEOaM_4IA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.066cb18ba95a7efe144e729713c429e422d9f95b.321031" + ], + "priority": "very-low", + "retries": 5, + "created": "2018-12-11T10:11:05.616Z", + "deadline": "2018-12-12T10:11:05.616Z", + "expires": "2019-01-08T10:11:05.616Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-1-checkouts-v3-2f7c6cb7dd63ce826370" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Y_m4ihw8S5e3vMSK59-4Kg" + }, + "cache": { + "level-1-checkouts-v3-2f7c6cb7dd63ce826370": "/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 flake8 -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_UNTRUSTED_CACHES": "1", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "066cb18ba95a7efe144e729713c429e422d9f95b", + "MOZ_SCM_LEVEL": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_PROXY_URL": "http://taskcluster/", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "mcastelluccio@mozilla.com", + "source": "https://hg.mozilla.org/try/file/066cb18ba95a7efe144e729713c429e422d9f95b/taskcluster/ci/source-test", + "description": "flake8 run over the gecko codebase ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=066cb18ba95a7efe144e729713c429e422d9f95b))", + "name": "source-test-mozlint-py-flake8" + }, + "tags": { + "os": "linux", + "createdForUser": "mcastelluccio@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-py-flake8" + }, + "extra": { + "index": { + "rank": 1544522872 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "f8", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "treeherder-platform": "lint/opt", + "parent": "FG3goVnCQfif8ZEOaM_4IA" + } + } + } + ] +} \ No newline at end of file diff --git a/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json b/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json new file mode 100644 index 000000000..4c73ab96d --- /dev/null +++ b/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json @@ -0,0 +1,30337 @@ +{ + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "tasks": [ + { + "status": { + "taskId": "A0TIaokYSHOmFz_mrkwRiA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.863Z", + "expires": "2019-04-30T09:55:26.863Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-05214328faae32afd", + "takenUntil": "2018-04-30T10:52:05.265Z", + "scheduled": "2018-04-30T10:30:05.010Z", + "started": "2018-04-30T10:32:05.350Z", + "resolved": "2018-04-30T10:39:38.239Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.1b947528eefa7ae2c9a6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.863Z", + "deadline": "2018-05-01T09:55:26.863Z", + "expires": "2019-04-30T09:55:26.863Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1b947528eefa7ae2c9a6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.863Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.863Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.863Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-cppunit" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "linux64-qr" + }, + "tier": 2, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A6fEPk_uTw6H8KObGbTO8w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.341Z", + "expires": "2019-04-30T09:55:12.341Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-064ed8c3c7699430c", + "takenUntil": "2018-04-30T11:52:40.880Z", + "scheduled": "2018-04-30T11:15:45.041Z", + "started": "2018-04-30T11:32:41.127Z", + "resolved": "2018-04-30T11:42:39.892Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.341Z", + "deadline": "2018-05-01T09:55:12.341Z", + "expires": "2019-04-30T09:55:12.341Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:12.341Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:12.341Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_vm_config.py --suite=g4-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000 --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --suite=g4-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g4 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-talos-g4-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-talos-g4-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Talos performance tests with e10s", + "tier": 3, + "symbol": "g4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A6yH5bpAS3ewEXsFoTNI7A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.880Z", + "expires": "2019-04-30T09:55:01.880Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-09f82d2ca8b24676b", + "takenUntil": "2018-04-30T11:45:24.021Z", + "scheduled": "2018-04-30T11:13:17.366Z", + "started": "2018-04-30T11:25:24.104Z", + "resolved": "2018-04-30T11:35:45.300Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.880Z", + "deadline": "2018-05-01T09:55:01.880Z", + "expires": "2019-04-30T09:55:01.880Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.880Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.880Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "A78X_00MS8iQILOdTS6WKw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:57.879Z", + "expires": "2019-04-30T09:54:57.879Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0fd05a62ab910091a", + "takenUntil": "2018-04-30T12:06:07.577Z", + "scheduled": "2018-04-30T11:45:32.676Z", + "started": "2018-04-30T11:46:07.655Z", + "resolved": "2018-04-30T11:58:00.665Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:57.879Z", + "deadline": "2018-05-01T09:54:57.879Z", + "expires": "2019-04-30T09:54:57.879Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:57.879Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:57.879Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-4", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "A7K0SiTzSNOtRUvnMx04Cg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.429Z", + "expires": "2019-04-30T09:54:53.429Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-08e7081787681e245", + "takenUntil": "2018-04-30T11:40:24.221Z", + "scheduled": "2018-04-30T11:13:46.179Z", + "started": "2018-04-30T11:20:24.303Z", + "resolved": "2018-04-30T11:37:22.810Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.429Z", + "deadline": "2018-05-01T09:54:53.429Z", + "expires": "2019-04-30T09:54:53.429Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:53.429Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:53.429Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/opt-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "A7QblWCZQeK4E0ojxXVPoQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:58.466Z", + "expires": "2019-04-30T09:54:58.466Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0049178f41a4a7e44", + "takenUntil": "2018-04-30T11:49:22.684Z", + "scheduled": "2018-04-30T10:27:41.402Z", + "started": "2018-04-30T10:27:47.936Z", + "resolved": "2018-04-30T11:30:41.976Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7e90210772a26c9fa9fe" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:58.466Z", + "deadline": "2018-05-01T09:54:58.466Z", + "expires": "2019-04-30T09:54:58.466Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7e90210772a26c9fa9fe", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:58.466Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:58.466Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:58.466Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-web-platform-tests-e10s-1" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "A8uj2MPKTP2L1bG8N4qLHw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:02.935Z", + "expires": "2019-04-30T09:55:02.935Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-08702f6cd7304e563", + "takenUntil": "2018-04-30T12:26:58.345Z", + "scheduled": "2018-04-30T11:15:45.162Z", + "started": "2018-04-30T11:32:56.373Z", + "resolved": "2018-04-30T12:14:09.740Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:02.935Z", + "deadline": "2018-05-01T09:55:02.935Z", + "expires": "2019-04-30T09:55:02.935Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:02.935Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:02.935Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --code-coverage --total-chunk=3 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-chrome-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests", + "tier": 2, + "symbol": "c3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A9eB4cWUQf2YyZK0oIyKAw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:30.091Z", + "expires": "2019-04-30T09:55:30.091Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-047fb2cd9672868e4", + "takenUntil": "2018-04-30T11:07:21.936Z", + "scheduled": "2018-04-30T10:30:04.966Z", + "started": "2018-04-30T10:31:58.271Z", + "resolved": "2018-04-30T10:52:22.882Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.865676786fd009ca052d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:30.091Z", + "deadline": "2018-05-01T09:55:30.091Z", + "expires": "2019-04-30T09:55:30.091Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.865676786fd009ca052d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:30.091Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:30.091Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:30.091Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-e10s-11" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-e10s-11", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "11" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "A9t1ZdzHSua2Yl_lQNgwUA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:51.072Z", + "expires": "2019-04-30T09:54:51.072Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-08c04e9cb24b5c744", + "takenUntil": "2018-04-30T11:43:58.282Z", + "scheduled": "2018-04-30T10:37:24.483Z", + "started": "2018-04-30T10:37:47.557Z", + "resolved": "2018-04-30T11:39:11.092Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.969444b250081720ea8b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:51.072Z", + "deadline": "2018-05-01T09:54:51.072Z", + "expires": "2019-04-30T09:54:51.072Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.969444b250081720ea8b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:51.072Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:51.072Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:51.072Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-10" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-10", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 10, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "10" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AAHKZZpDQLOZZGxXMRaQVA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.879Z", + "expires": "2019-04-30T09:55:12.879Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0dff7599d77cd4dc5", + "takenUntil": "2018-04-30T11:21:23.456Z", + "scheduled": "2018-04-30T10:40:32.431Z", + "started": "2018-04-30T10:45:59.887Z", + "resolved": "2018-04-30T11:11:55.928Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "OJ6XJdcsTl6Bwt_kodmKNQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.86806607876bad734f00" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.879Z", + "deadline": "2018-05-01T09:55:12.879Z", + "expires": "2019-04-30T09:55:12.879Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.86806607876bad734f00", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:12.879Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:12.879Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:12.879Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OJ6XJdcsTl6Bwt_kodmKNQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OJ6XJdcsTl6Bwt_kodmKNQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-coverage", + "--jsd-code-coverage", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OJ6XJdcsTl6Bwt_kodmKNQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OJ6XJdcsTl6Bwt_kodmKNQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-coverage", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-jsdcov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ABPC1fxeQzGn6xlvjyAu4Q", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.745Z", + "expires": "2019-04-30T09:55:19.745Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-247", + "takenUntil": "2018-04-30T12:07:21.282Z", + "scheduled": "2018-04-30T11:13:17.609Z", + "started": "2018-04-30T11:13:18.202Z", + "resolved": "2018-04-30T11:55:32.021Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.745Z", + "deadline": "2018-05-01T09:55:19.745Z", + "expires": "2019-04-30T09:55:19.745Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:19.745Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:19.745Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=motionmark-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=motionmark-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --enable-webrender" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos motionmark ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-qr/opt-talos-motionmark-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-qr/opt-talos-motionmark-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Talos performance tests with e10s", + "tier": 2, + "symbol": "mm" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AB_8Nu5HRui4H5a0aYkWqA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:30.543Z", + "expires": "2019-04-30T09:55:30.543Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-001ba3c90fb105efa", + "takenUntil": "2018-04-30T12:23:20.947Z", + "scheduled": "2018-04-30T11:23:07.754Z", + "started": "2018-04-30T11:46:20.520Z", + "resolved": "2018-04-30T12:08:30.168Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GTG52Q5aT8yBK-HeM5jpMg", + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:30.543Z", + "deadline": "2018-05-01T09:55:30.543Z", + "expires": "2019-04-30T09:55:30.543Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:30.543Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:30.543Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/GTG52Q5aT8yBK-HeM5jpMg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell --code-coverage --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-xpcshell-7" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-xpcshell-7" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ACUo5ozzRk-bI0nLNsNUyQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.743Z", + "expires": "2019-04-30T09:54:53.743Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-001421ce7ae73e62c", + "takenUntil": "2018-04-30T11:14:16.719Z", + "scheduled": "2018-04-30T10:38:29.272Z", + "started": "2018-04-30T10:38:53.492Z", + "resolved": "2018-04-30T11:01:58.497Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.fed3da66fcd68bdff6e0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.743Z", + "deadline": "2018-05-01T09:54:53.743Z", + "expires": "2019-04-30T09:54:53.743Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fed3da66fcd68bdff6e0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:53.743Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:53.743Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:53.743Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-reftest-no-accel-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-reftest-no-accel-e10s-3", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AEWxvv1sSUOADVu6MM-X7w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.769Z", + "expires": "2019-04-30T09:55:26.769Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-092cc177a2f7ed946", + "takenUntil": "2018-04-30T12:07:51.412Z", + "scheduled": "2018-04-30T10:30:05.041Z", + "started": "2018-04-30T10:30:54.179Z", + "resolved": "2018-04-30T12:01:23.865Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.9347ce0dc2493f08fd4a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.769Z", + "deadline": "2018-05-01T09:55:26.769Z", + "expires": "2019-04-30T09:55:26.769Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9347ce0dc2493f08fd4a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.769Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.769Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.769Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-9" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt9" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AEZUWmRXS_KMjaxBLZHqWg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:52.842Z", + "expires": "2019-04-30T09:54:52.842Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0fad548f0c1cda481", + "takenUntil": "2018-04-30T11:31:23.115Z", + "scheduled": "2018-04-30T10:38:59.854Z", + "started": "2018-04-30T10:40:36.202Z", + "resolved": "2018-04-30T11:15:51.880Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Aan3dsW3T7CXNeZvRE-LKQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.349748ce5e3318289be2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:52.842Z", + "deadline": "2018-05-01T09:54:52.842Z", + "expires": "2019-04-30T09:54:52.842Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.349748ce5e3318289be2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:52.842Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:52.842Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:52.842Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AEhptjPzSg6N5a5n6usSog", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:05.876Z", + "expires": "2019-04-30T09:55:05.876Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0129", + "takenUntil": "2018-04-30T11:13:55.940Z", + "scheduled": "2018-04-30T10:36:54.930Z", + "started": "2018-04-30T10:36:55.535Z", + "resolved": "2018-04-30T10:58:45.824Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7b4446cb33ee7c7d4303" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:05.876Z", + "deadline": "2018-05-01T09:55:05.876Z", + "expires": "2019-04-30T09:55:05.876Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7b4446cb33ee7c7d4303", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:05.876Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:05.876Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--xpcshell-suite=xpcshell" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-xpcshell" + }, + "tags": { + "os": "macosx", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AFp0noFpTFOHWpjVKFLc-A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:22.735Z", + "expires": "2019-04-30T09:55:22.735Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0db76a04bfc2cf2cd", + "takenUntil": "2018-04-30T11:22:42.305Z", + "scheduled": "2018-04-30T11:02:39.917Z", + "started": "2018-04-30T11:02:42.384Z", + "resolved": "2018-04-30T11:11:31.480Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.98204ee1b0cb0a054b65" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:22.735Z", + "deadline": "2018-05-01T09:55:22.735Z", + "expires": "2019-04-30T09:55:22.735Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.98204ee1b0cb0a054b65", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:22.735Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:22.735Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:22.735Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-reftest-no-accel-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-pgo/opt-reftest-no-accel-e10s-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AGXruwj4RyiqxBOu8N7gbQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.030Z", + "expires": "2019-04-30T09:55:00.030Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03731274fa02de223", + "takenUntil": "2018-04-30T11:12:54.249Z", + "scheduled": "2018-04-30T10:36:28.652Z", + "started": "2018-04-30T10:37:30.781Z", + "resolved": "2018-04-30T10:53:18.785Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.78903542d0b02081d616" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.030Z", + "deadline": "2018-05-01T09:55:00.030Z", + "expires": "2019-04-30T09:55:00.030Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.78903542d0b02081d616", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:00.030Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:00.030Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:00.030Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-reftest-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/opt-reftest-e10s-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AI5MHhA6Q_KW3iWPObOm2Q", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:22.599Z", + "expires": "2019-04-30T09:55:22.599Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-008", + "takenUntil": "2018-04-30T11:22:41.103Z", + "scheduled": "2018-04-30T11:02:40.265Z", + "started": "2018-04-30T11:02:41.186Z", + "resolved": "2018-04-30T11:04:38.989Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.bad31fda3048fe057c28" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:22.599Z", + "deadline": "2018-05-01T09:55:22.599Z", + "expires": "2019-04-30T09:55:22.599Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-30T09:55:22.599Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-30T09:55:22.599Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-30T09:55:22.599Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--suite=h1-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos h1 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-talos-h1-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-h1-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "h1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AJHurOrSTO6zRfliOtBDiw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.681Z", + "expires": "2019-04-30T09:55:09.681Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-07988a4f3ab2d33dd", + "takenUntil": "2018-04-30T11:40:34.260Z", + "scheduled": "2018-04-30T11:13:46.250Z", + "started": "2018-04-30T11:20:34.336Z", + "resolved": "2018-04-30T11:33:38.042Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.681Z", + "deadline": "2018-05-01T09:55:09.681Z", + "expires": "2019-04-30T09:55:09.681Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:09.681Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:09.681Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-mochitest-webgl-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/opt-mochitest-webgl-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AN0fVGi1RnK-D4T_e-adWg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:59.199Z", + "expires": "2019-04-30T09:54:59.199Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0beaccb75cdd88bc8", + "takenUntil": "2018-04-30T12:58:06.508Z", + "scheduled": "2018-04-30T11:15:44.473Z", + "started": "2018-04-30T11:30:01.776Z", + "resolved": "2018-04-30T12:54:00.838Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:59.199Z", + "deadline": "2018-05-01T09:54:59.199Z", + "expires": "2019-04-30T09:54:59.199Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:59.199Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:59.199Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --code-coverage --e10s --total-chunk=7 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ANQk2wMDRhKoHUfCeB1hTA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.015Z", + "expires": "2019-04-30T09:55:04.015Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-linux64-ms-304", + "takenUntil": "2018-04-30T10:56:29.673Z", + "scheduled": "2018-04-30T10:36:28.671Z", + "started": "2018-04-30T10:36:29.756Z", + "resolved": "2018-04-30T10:41:00.627Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.9b9577ea788ba993c922" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.015Z", + "deadline": "2018-05-01T09:55:04.015Z", + "expires": "2019-04-30T09:55:04.015Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-30T09:55:04.015Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-30T09:55:04.015Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-30T09:55:04.015Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--suite=g3-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--enable-webrender", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g3 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/opt-talos-g3-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-qr/opt-talos-g3-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Talos performance tests with e10s", + "tier": 2, + "symbol": "g3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ANUwDHTHQamq6-BXfdLnyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:25.229Z", + "expires": "2019-04-30T09:55:25.229Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-038265491e3056d37", + "takenUntil": "2018-04-30T11:05:33.770Z", + "scheduled": "2018-04-30T10:30:04.914Z", + "started": "2018-04-30T10:30:10.073Z", + "resolved": "2018-04-30T10:52:36.812Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.0477d0cf4fd78f415d7b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:25.229Z", + "deadline": "2018-05-01T09:55:25.229Z", + "expires": "2019-04-30T09:55:25.229Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0477d0cf4fd78f415d7b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:25.229Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:25.229Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:25.229Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--reftest-suite=crashtest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-qr/debug-crashtest-e10s", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AO-3FYG0S2CHa8WrgyYypA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.220Z", + "expires": "2019-04-30T09:55:10.220Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d2db11b79ccafdf5", + "takenUntil": "2018-04-30T11:32:07.967Z", + "scheduled": "2018-04-30T10:39:00.157Z", + "started": "2018-04-30T10:41:20.454Z", + "resolved": "2018-04-30T11:24:59.680Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Aan3dsW3T7CXNeZvRE-LKQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.3e494c9cf4c53b96947c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.220Z", + "deadline": "2018-05-01T09:55:10.220Z", + "expires": "2019-04-30T09:55:10.220Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3e494c9cf4c53b96947c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.220Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.220Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.220Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-17" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-17", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 17, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R17" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "APZ3Kkq_Qh2rqWI4HDctzg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.730Z", + "expires": "2019-04-30T09:55:01.730Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06a3853952b04a7cc", + "takenUntil": "2018-04-30T11:27:50.864Z", + "scheduled": "2018-04-30T11:02:59.239Z", + "started": "2018-04-30T11:07:50.943Z", + "resolved": "2018-04-30T11:20:54.301Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.730Z", + "deadline": "2018-05-01T09:55:01.730Z", + "expires": "2019-04-30T09:55:01.730Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.730Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.730Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-marionette-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AS31HmXwTAO1KVct1gjZSw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:05.072Z", + "expires": "2019-04-30T09:55:05.072Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-015ed0e925a315946", + "takenUntil": "2018-04-30T10:57:11.170Z", + "scheduled": "2018-04-30T10:34:56.596Z", + "started": "2018-04-30T10:37:11.245Z", + "resolved": "2018-04-30T10:46:39.243Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.3b6894ec89d70b158af2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:05.072Z", + "deadline": "2018-05-01T09:55:05.072Z", + "expires": "2019-04-30T09:55:05.072Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3b6894ec89d70b158af2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:05.072Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:05.072Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:05.072Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "a11y", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "ASW8-V9MSYO_0dR1g0DSMA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:06.361Z", + "expires": "2019-04-30T09:55:06.361Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-125", + "takenUntil": "2018-04-30T12:37:00.813Z", + "scheduled": "2018-04-30T11:42:56.782Z", + "started": "2018-04-30T11:42:57.640Z", + "resolved": "2018-04-30T12:24:03.371Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:06.361Z", + "deadline": "2018-05-01T09:55:06.361Z", + "expires": "2019-04-30T09:55:06.361Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:06.361Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:06.361Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=motionmark-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=motionmark-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos motionmark ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-talos-motionmark-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-motionmark-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 2, + "symbol": "mm" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ASxKbi_uS3WY6PfgMlv8NA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.613Z", + "expires": "2019-04-30T09:55:10.613Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0bf9c6e48461e7f59", + "takenUntil": "2018-04-30T10:47:52.161Z", + "scheduled": "2018-04-30T10:27:41.412Z", + "started": "2018-04-30T10:27:52.244Z", + "resolved": "2018-04-30T10:40:46.222Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.9e734db2c8f3eb2a4c10" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.613Z", + "deadline": "2018-05-01T09:55:10.613Z", + "expires": "2019-04-30T09:55:10.613Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9e734db2c8f3eb2a4c10", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.613Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.613Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.613Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-xpcshell-10" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-10" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X10" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AXCCr823Swmbkj_bKNWaTg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.587Z", + "expires": "2019-04-30T09:55:15.587Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0ee3eb795e37302f0", + "takenUntil": "2018-04-30T12:01:07.772Z", + "scheduled": "2018-04-30T11:13:17.294Z", + "started": "2018-04-30T11:24:07.056Z", + "resolved": "2018-04-30T11:43:09.234Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.587Z", + "deadline": "2018-05-01T09:55:15.587Z", + "expires": "2019-04-30T09:55:15.587Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:15.587Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:15.587Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AZYwBMyfROiA1cBcSzOa2A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:21.035Z", + "expires": "2019-04-30T09:55:21.035Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d9d68fdb930f5a68", + "takenUntil": "2018-04-30T11:42:42.877Z", + "scheduled": "2018-04-30T11:02:33.188Z", + "started": "2018-04-30T11:05:41.658Z", + "resolved": "2018-04-30T11:35:23.766Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:21.035Z", + "deadline": "2018-05-01T09:55:21.035Z", + "expires": "2019-04-30T09:55:21.035Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:21.035Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:21.035Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AZfk6hh2Q4u1OLwAAsmDZw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:58.991Z", + "expires": "2019-04-30T09:54:58.991Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0b8987e6874d748d3", + "takenUntil": "2018-04-30T10:57:29.898Z", + "scheduled": "2018-04-30T10:36:28.650Z", + "started": "2018-04-30T10:37:29.982Z", + "resolved": "2018-04-30T10:52:43.691Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.49560d5949dfb41726a3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:58.991Z", + "deadline": "2018-05-01T09:54:58.991Z", + "expires": "2019-04-30T09:54:58.991Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.49560d5949dfb41726a3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:58.991Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:58.991Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:58.991Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/opt-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AZyNHWvLQ4eMukBLQ6sG6Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:21.302Z", + "expires": "2019-04-30T09:55:21.302Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-031707346b54da6ab", + "takenUntil": "2018-04-30T11:07:31.147Z", + "scheduled": "2018-04-30T10:30:05.038Z", + "started": "2018-04-30T10:32:07.830Z", + "resolved": "2018-04-30T10:59:46.607Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.0079298d985e376f799e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:21.302Z", + "deadline": "2018-05-01T09:55:21.302Z", + "expires": "2019-04-30T09:55:21.302Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0079298d985e376f799e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:21.302Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:21.302Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:21.302Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AaPcLoufSlC5xlUBGHTOqw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.272Z", + "expires": "2019-04-30T09:54:53.272Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06acd159c39922979", + "takenUntil": "2018-04-30T11:40:00.717Z", + "scheduled": "2018-04-30T11:02:59.025Z", + "started": "2018-04-30T11:03:00.042Z", + "resolved": "2018-04-30T11:30:53.289Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.272Z", + "deadline": "2018-05-01T09:54:53.272Z", + "expires": "2019-04-30T09:54:53.272Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:53.272Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:53.272Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Aan3dsW3T7CXNeZvRE-LKQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.980Z", + "expires": "2019-04-30T09:54:44.980Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-049d7bbb8eefc798b", + "takenUntil": "2018-04-30T10:48:38.064Z", + "scheduled": "2018-04-30T09:56:18.386Z", + "started": "2018-04-30T09:57:51.436Z", + "resolved": "2018-04-30T10:38:58.951Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "JE5PzNT_QJyUAPAUH3YI0g", + "OWMKem5GSeeYEfwcgoqEZw", + "U-XQGxP7QEyJte4Iy0rCxA", + "VH673vciR3id_ISON1uE5g", + "YksHkdRuQt6Ux57gaXRavw", + "aBhwAxEPTbCaiCwcbSySGQ", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.mobile.android-api-16-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.mobile.android-api-16-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33921.mobile.android-api-16-opt", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.mobile.android-api-16-opt", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.mobile.android-api-16-opt", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.980Z", + "deadline": "2018-05-01T09:54:44.980Z", + "expires": "2019-04-30T09:54:44.980Z", + "scopes": [ + "queue:get-artifact:project/gecko/android-ndk/*", + "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-mozilla-central-build-android-api-16-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "JE5PzNT_QJyUAPAUH3YI0g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-build-android-api-16-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/android/R": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "expires": "2019-04-30T09:54:44.980Z", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk", + "expires": "2019-04-30T09:54:44.980Z", + "type": "file" + }, + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:44.980Z", + "type": "directory" + }, + "public/android/maven": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "expires": "2019-04-30T09:54:44.980Z", + "type": "directory" + }, + "public/build/geckoview-androidTest.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/officialWithGeckoBinariesNoMinApi/debug/geckoview-official-withGeckoBinaries-noMinApi-debug-androidTest.apk", + "expires": "2019-04-30T09:54:44.980Z", + "type": "file" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@aBhwAxEPTbCaiCwcbSySGQ project/gecko/android-ndk/android-ndk.tar.xz@OWMKem5GSeeYEfwcgoqEZw project/gecko/android-sdk/android-sdk-linux.tar.xz@U-XQGxP7QEyJte4Iy0rCxA public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@YksHkdRuQt6Ux57gaXRavw public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "Android 4.0 api-16+ Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-android-api-16/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-android-api-16/opt" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "JE5PzNT_QJyUAPAUH3YI0g" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "Aat8zlaKSO6fk2NlECVgSw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.919Z", + "expires": "2019-04-30T09:54:55.919Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-012933a373035f53d", + "takenUntil": "2018-04-30T11:14:30.846Z", + "scheduled": "2018-04-30T10:38:29.461Z", + "started": "2018-04-30T10:39:07.405Z", + "resolved": "2018-04-30T10:55:23.211Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.cfb1d6730b6abddb8cb3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.919Z", + "deadline": "2018-05-01T09:54:55.919Z", + "expires": "2019-04-30T09:54:55.919Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.cfb1d6730b6abddb8cb3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:55.919Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:55.919Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:55.919Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AcneW9H0T-en2R8168CiGA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.260Z", + "expires": "2019-04-30T09:55:15.260Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-01841973ce7211fbc", + "takenUntil": "2018-04-30T10:57:29.096Z", + "scheduled": "2018-04-30T10:36:28.646Z", + "started": "2018-04-30T10:37:29.175Z", + "resolved": "2018-04-30T10:51:34.674Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.3abe543fe0a9a2741291" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.260Z", + "deadline": "2018-05-01T09:55:15.260Z", + "expires": "2019-04-30T09:55:15.260Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3abe543fe0a9a2741291", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:15.260Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:15.260Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:15.260Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-xpcshell-8" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-xpcshell-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AdvspaHlTRuubWqk6sMcNg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.537Z", + "expires": "2019-04-30T09:55:26.537Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-04457e8674559882f", + "takenUntil": "2018-04-30T11:30:50.365Z", + "scheduled": "2018-04-30T11:02:33.472Z", + "started": "2018-04-30T11:10:50.465Z", + "resolved": "2018-04-30T11:20:36.738Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.537Z", + "deadline": "2018-05-01T09:55:26.537Z", + "expires": "2019-04-30T09:55:26.537Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:26.537Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:26.537Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=a11y" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-mochitest-a11y", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Afca1km_RTi4pEgE_YBMiA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:16.317Z", + "expires": "2019-04-30T09:55:16.317Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-162", + "takenUntil": "2018-04-30T12:19:58.955Z", + "scheduled": "2018-04-30T11:42:57.035Z", + "started": "2018-04-30T11:42:57.640Z", + "resolved": "2018-04-30T12:02:15.324Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:16.317Z", + "deadline": "2018-05-01T09:55:16.317Z", + "expires": "2019-04-30T09:55:16.317Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:16.317Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:16.317Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-talos-g5-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "g5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Ag91RMiyTw2nQbBR_ihLrA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:02.684Z", + "expires": "2019-04-30T09:55:02.684Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d6be70840442093c", + "takenUntil": "2018-04-30T11:14:30.007Z", + "scheduled": "2018-04-30T10:38:29.431Z", + "started": "2018-04-30T10:39:06.624Z", + "resolved": "2018-04-30T10:58:03.639Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2f0015e8980809878d10" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:02.684Z", + "deadline": "2018-05-01T09:55:02.684Z", + "expires": "2019-04-30T09:55:02.684Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2f0015e8980809878d10", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:02.684Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:02.684Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:02.684Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-reftest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-reftest-e10s-4", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AgVIjNhKSFO-dgQhXpZNMw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.163Z", + "expires": "2019-04-30T09:55:00.163Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-009001bba994a6055", + "takenUntil": "2018-04-30T11:15:38.863Z", + "scheduled": "2018-04-30T10:38:29.391Z", + "started": "2018-04-30T10:40:15.301Z", + "resolved": "2018-04-30T10:59:25.142Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.07d9bba32f9dfcd37481" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.163Z", + "deadline": "2018-05-01T09:55:00.163Z", + "expires": "2019-04-30T09:55:00.163Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.07d9bba32f9dfcd37481", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:00.163Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:00.163Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:00.163Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-web-platform-tests-wdspec-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-web-platform-tests-wdspec-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wd" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AgoiE4XIQVeruQUTPqegaw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:56.615Z", + "expires": "2019-04-30T09:54:56.615Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-02f6f5700ce78f71c", + "takenUntil": "2018-04-30T11:12:54.983Z", + "scheduled": "2018-04-30T10:36:28.697Z", + "started": "2018-04-30T10:37:31.172Z", + "resolved": "2018-04-30T10:55:50.704Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.65cf175a33a26641191d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:56.615Z", + "deadline": "2018-05-01T09:54:56.615Z", + "expires": "2019-04-30T09:54:56.615Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.65cf175a33a26641191d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:56.615Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:56.615Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:56.615Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/opt-mochitest-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Aizx1-QYSSmzA6OOr42Hgw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:46.318Z", + "expires": "2019-04-30T09:54:46.318Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e5d96e9eee32de59", + "takenUntil": "2018-04-30T12:26:28.871Z", + "scheduled": "2018-04-30T10:49:04.468Z", + "started": "2018-04-30T10:49:32.003Z", + "resolved": "2018-04-30T12:08:37.718Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.21ffa58144c446dff11e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:46.318Z", + "deadline": "2018-05-01T09:54:46.318Z", + "expires": "2019-04-30T09:54:46.318Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.21ffa58144c446dff11e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:46.318Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:46.318Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:46.318Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--code-coverage", + "--e10s", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "awsy/linux_config.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "awsy_script.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-awsy-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-awsy-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "SY-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "tier": 2, + "symbol": "sy" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Ak6JYddaSuWn13dDeYN89g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.233Z", + "expires": "2019-04-30T09:55:01.233Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a07f2f3e06417107", + "takenUntil": "2018-04-30T12:42:25.437Z", + "scheduled": "2018-04-30T11:15:44.630Z", + "started": "2018-04-30T11:31:23.257Z", + "resolved": "2018-04-30T12:29:42.316Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.233Z", + "deadline": "2018-05-01T09:55:01.233Z", + "expires": "2019-04-30T09:55:01.233Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.233Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.233Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --code-coverage --e10s --total-chunk=15 --this-chunk=12" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-web-platform-tests-e10s-12" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-web-platform-tests-e10s-12" + }, + "extra": { + "chunks": { + "current": 12, + "total": 15 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt12" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AkLu8_8dTw6saAO8wbR72Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.140Z", + "expires": "2019-04-30T09:55:12.140Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0d2161c04f23c2faa", + "takenUntil": "2018-04-30T12:04:41.904Z", + "scheduled": "2018-04-30T11:13:17.541Z", + "started": "2018-04-30T11:27:40.634Z", + "resolved": "2018-04-30T11:45:46.975Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.140Z", + "deadline": "2018-05-01T09:55:12.140Z", + "expires": "2019-04-30T09:55:12.140Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:12.140Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:12.140Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-plain-headless-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-plain-headless-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AkqUg932RYOSQMRJhorD4Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.470Z", + "expires": "2019-04-30T09:55:03.470Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0ee3eb795e37302f0", + "takenUntil": "2018-04-30T12:09:41.890Z", + "scheduled": "2018-04-30T11:45:32.693Z", + "started": "2018-04-30T11:49:41.974Z", + "resolved": "2018-04-30T11:57:45.353Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.470Z", + "deadline": "2018-05-01T09:55:03.470Z", + "expires": "2019-04-30T09:55:03.470Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:03.470Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:03.470Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "An6hSMYVQ1OPct3tHyYb6g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.515Z", + "expires": "2019-04-30T09:55:03.515Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0c825d95a22f11738", + "takenUntil": "2018-04-30T12:24:50.790Z", + "scheduled": "2018-04-30T11:15:44.603Z", + "started": "2018-04-30T11:30:48.744Z", + "resolved": "2018-04-30T12:11:15.243Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.515Z", + "deadline": "2018-05-01T09:55:03.515Z", + "expires": "2019-04-30T09:55:03.515Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:03.515Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:03.515Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --code-coverage --e10s --total-chunk=10 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ApcQLGqGRWmm5XSrGQJdbQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.612Z", + "expires": "2019-04-30T09:55:19.612Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0af79b77eb07d4f0f", + "takenUntil": "2018-04-30T11:44:18.203Z", + "scheduled": "2018-04-30T10:37:24.637Z", + "started": "2018-04-30T10:38:07.477Z", + "resolved": "2018-04-30T11:24:40.423Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.49f55e4435ed3c680d8d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.612Z", + "deadline": "2018-05-01T09:55:19.612Z", + "expires": "2019-04-30T09:55:19.612Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.49f55e4435ed3c680d8d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:19.612Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:19.612Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:19.612Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "ArT82wSsRJuGs1ix9AMLFQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:27.068Z", + "expires": "2019-04-30T09:55:27.068Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ba62c92d0c64e3be", + "takenUntil": "2018-04-30T11:52:20.362Z", + "scheduled": "2018-04-30T10:30:05.028Z", + "started": "2018-04-30T10:30:46.572Z", + "resolved": "2018-04-30T11:33:05.131Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c5222c38d211e7616233" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:27.068Z", + "deadline": "2018-05-01T09:55:27.068Z", + "expires": "2019-04-30T09:55:27.068Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c5222c38d211e7616233", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:27.068Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:27.068Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:27.068Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-web-platform-tests-e10s-9" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt9" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Asq-tA5nTge8hrX0upx8Fw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.089Z", + "expires": "2019-04-30T09:55:03.089Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ae29ca88fc515ec1", + "takenUntil": "2018-04-30T11:18:29.532Z", + "scheduled": "2018-04-30T10:27:41.404Z", + "started": "2018-04-30T10:27:42.680Z", + "resolved": "2018-04-30T11:01:04.503Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2d49fcdbcb88a0c05e37" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.089Z", + "deadline": "2018-05-01T09:55:03.089Z", + "expires": "2019-04-30T09:55:03.089Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2d49fcdbcb88a0c05e37", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:03.089Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:03.089Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:03.089Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-mochitest-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-mochitest-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Atj-Gdj5Ru6YgpjrCkaHvw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.399Z", + "expires": "2019-04-30T09:55:19.399Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-078867c33bd4122b6", + "takenUntil": "2018-04-30T11:28:56.226Z", + "scheduled": "2018-04-30T10:37:24.647Z", + "started": "2018-04-30T10:38:09.006Z", + "resolved": "2018-04-30T11:20:21.796Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.352058ca150dabbd4379" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.399Z", + "deadline": "2018-05-01T09:55:19.399Z", + "expires": "2019-04-30T09:55:19.399Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.352058ca150dabbd4379", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:19.399Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:19.399Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:19.399Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=31", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-31" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-31", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 31, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "31" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Avy0E7CCQGumUBLSPxQ1Tw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:18.639Z", + "expires": "2019-04-30T09:55:18.639Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-00f39dc739468c839", + "takenUntil": "2018-04-30T11:14:11.926Z", + "scheduled": "2018-04-30T10:38:29.220Z", + "started": "2018-04-30T10:38:48.365Z", + "resolved": "2018-04-30T10:57:24.732Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.e67716c475e70e29d9b1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:18.639Z", + "deadline": "2018-05-01T09:55:18.639Z", + "expires": "2019-04-30T09:55:18.639Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e67716c475e70e29d9b1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:18.639Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:18.639Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:18.639Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-mochitest-devtools-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-mochitest-devtools-chrome-e10s-6", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "AwQOnzgVST2Jz_kXpGdUmA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.133Z", + "expires": "2019-04-30T09:55:12.133Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-264", + "takenUntil": "2018-04-30T11:50:18.730Z", + "scheduled": "2018-04-30T11:13:17.445Z", + "started": "2018-04-30T11:13:18.091Z", + "resolved": "2018-04-30T11:33:08.548Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.133Z", + "deadline": "2018-05-01T09:55:12.133Z", + "expires": "2019-04-30T09:55:12.133Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:12.133Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:12.133Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=g4-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=g4-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --enable-webrender" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g4 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-qr/opt-talos-g4-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-qr/opt-talos-g4-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Talos performance tests with e10s", + "tier": 2, + "symbol": "g4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Axtv8DLDQTmgHfP7_186PQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:06.758Z", + "expires": "2019-04-30T09:55:06.758Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03d3c281a1e43fd68", + "takenUntil": "2018-04-30T11:44:29.767Z", + "scheduled": "2018-04-30T11:13:17.326Z", + "started": "2018-04-30T11:24:29.849Z", + "resolved": "2018-04-30T11:28:26.901Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:06.758Z", + "deadline": "2018-05-01T09:55:06.758Z", + "expires": "2019-04-30T09:55:06.758Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:06.758Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:06.758Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag remote --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-firefox-ui-functional-remote-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-firefox-ui-functional-remote-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "Fxfn-r-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Firefox functional tests (remote) with e10s", + "tier": 2, + "symbol": "en-US" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AyxtA7ZJTaSLtuv4zH1Hmw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:20.172Z", + "expires": "2019-04-30T09:55:20.172Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0aca6c041b50d021d", + "takenUntil": "2018-04-30T11:45:33.020Z", + "scheduled": "2018-04-30T10:37:25.134Z", + "started": "2018-04-30T10:39:22.378Z", + "resolved": "2018-04-30T11:34:35.894Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.a5fab0f265b30cb76ec3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:20.172Z", + "deadline": "2018-05-01T09:55:20.172Z", + "expires": "2019-04-30T09:55:20.172Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a5fab0f265b30cb76ec3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:20.172Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:20.172Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:20.172Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=56", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-56" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-56", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 56, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R56" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B-la5pVsS5SrRymbcogRAQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.746Z", + "expires": "2019-04-30T09:54:53.746Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-056763d98c9b633a7", + "takenUntil": "2018-04-30T11:14:09.032Z", + "scheduled": "2018-04-30T10:38:29.195Z", + "started": "2018-04-30T10:38:45.656Z", + "resolved": "2018-04-30T11:01:01.062Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.56a1be2467b6a546b87d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.746Z", + "deadline": "2018-05-01T09:54:53.746Z", + "expires": "2019-04-30T09:54:53.746Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.56a1be2467b6a546b87d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:53.746Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:53.746Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:53.746Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B031ueHuTJmyGexzyBaV6g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:49.180Z", + "expires": "2019-04-30T09:54:49.180Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-046b294d5b9ce0aad", + "takenUntil": "2018-04-30T12:26:23.492Z", + "scheduled": "2018-04-30T10:49:04.456Z", + "started": "2018-04-30T10:49:27.024Z", + "resolved": "2018-04-30T12:16:56.215Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.5eac55966a4ef3089280" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:49.180Z", + "deadline": "2018-05-01T09:54:49.180Z", + "expires": "2019-04-30T09:54:49.180Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5eac55966a4ef3089280", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:49.180Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:49.180Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:49.180Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-web-platform-tests-e10s-3" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "B1fqFnq9SSe-59mmeBRpsw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.983Z", + "expires": "2019-04-30T09:54:44.983Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06ec2c263f7ab4c4d", + "takenUntil": "2018-04-30T10:48:48.436Z", + "scheduled": "2018-04-30T09:56:18.365Z", + "started": "2018-04-30T09:58:02.015Z", + "resolved": "2018-04-30T10:35:53.278Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "G4yDYLgqSrSaSlv1g9LTlQ", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Tl6B_BUUSmC9qOs0Gw80sg", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.macosx64-fuzzing-asan-opt", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.983Z", + "deadline": "2018-05-01T09:54:44.983Z", + "expires": "2019-04-30T09:54:44.983Z", + "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-mozilla-central-build-macosx64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-central-build-macosx64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:44.983Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@G4yDYLgqSrSaSlv1g9LTlQ public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Tl6B_BUUSmC9qOs0Gw80sg public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "PERFHERDER_EXTRA_OPTIONS": "asan-fuzzing", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "cross-fuzzing-asan", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "MacOS X x64 Cross-compile Fuzzing ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-macosx64-asan-fuzzing/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64-asan-fuzzing/opt" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "osx-cross" + }, + "tier": 1, + "symbol": "Bof", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "B2MpeVelRCGuVrS5UpMKdw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:56.689Z", + "expires": "2019-04-30T09:54:56.689Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b891d1b67e0810fd", + "takenUntil": "2018-04-30T11:29:11.646Z", + "scheduled": "2018-04-30T10:37:24.748Z", + "started": "2018-04-30T10:38:25.105Z", + "resolved": "2018-04-30T11:18:17.894Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.e276703eb35ad8184ac0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:56.689Z", + "deadline": "2018-05-01T09:54:56.689Z", + "expires": "2019-04-30T09:54:56.689Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e276703eb35ad8184ac0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:56.689Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:56.689Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:56.689Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=30", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-30" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-30", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 30, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "30" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B3sIk6NxR3K5axQe6SgjvA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.786Z", + "expires": "2019-04-30T09:55:01.786Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ca1a0334eef22023", + "takenUntil": "2018-04-30T11:44:01.143Z", + "scheduled": "2018-04-30T10:37:24.494Z", + "started": "2018-04-30T10:37:50.940Z", + "resolved": "2018-04-30T11:27:37.107Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.24d1edd4dba4f08c2d51" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.786Z", + "deadline": "2018-05-01T09:55:01.786Z", + "expires": "2019-04-30T09:55:01.786Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.24d1edd4dba4f08c2d51", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:01.786Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:01.786Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:01.786Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-14" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-14", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 14, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R14" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B63tkbnhS2-rAHSUq0cTAQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:52.468Z", + "expires": "2019-04-30T09:54:52.468Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-05404ea9fde49c043", + "takenUntil": "2018-04-30T10:59:05.758Z", + "scheduled": "2018-04-30T10:38:29.380Z", + "started": "2018-04-30T10:39:05.838Z", + "resolved": "2018-04-30T10:49:30.403Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.b2667b3b3bec61195695" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:52.468Z", + "deadline": "2018-05-01T09:54:52.468Z", + "expires": "2019-04-30T09:54:52.468Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b2667b3b3bec61195695", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:52.468Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:52.468Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:52.468Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B6KFSq0DRA-8EWrUFN1o0g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.997Z", + "expires": "2019-04-30T09:54:44.997Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-05c88b0f411a15eee", + "takenUntil": "2018-04-30T10:47:06.318Z", + "scheduled": "2018-04-30T09:56:18.359Z", + "started": "2018-04-30T09:56:19.051Z", + "resolved": "2018-04-30T10:34:55.167Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "D06NaEbzTcO-TgeZNpSGQQ", + "IqxA_nG6QVaBux-I4WXE0A", + "WFQrgPn2RO-jEjfk1-378g", + "aD8ER2TJR-miwww4rU1lKA", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.linux64-asan-opt", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.linux64-asan-opt", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.997Z", + "deadline": "2018-05-01T09:54:44.997Z", + "expires": "2019-04-30T09:54:44.997Z", + "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-mozilla-central-build-linux64-asan-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-build-linux64-asan-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:44.997Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@IqxA_nG6QVaBux-I4WXE0A public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@WFQrgPn2RO-jEjfk1-378g public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "opt asan", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-tc", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "Linux64 Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-linux64-asan/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-asan/opt" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bo", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "B8gHzQCaQ-2PbaWAhREM0w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:07.902Z", + "expires": "2019-04-30T09:55:07.902Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0c9a33a9a86792989", + "takenUntil": "2018-04-30T10:56:32.564Z", + "scheduled": "2018-04-30T10:34:56.458Z", + "started": "2018-04-30T10:36:32.648Z", + "resolved": "2018-04-30T10:50:07.229Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.de473ede61709652f65c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:07.902Z", + "deadline": "2018-05-01T09:55:07.902Z", + "expires": "2019-04-30T09:55:07.902Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.de473ede61709652f65c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:07.902Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:07.902Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:07.902Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=8" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-reftest-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-reftest-e10s-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "B9rw5Tm5S1Wehl8v9Ych3w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:47.391Z", + "expires": "2019-04-30T09:54:47.391Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0673d093417701f82", + "takenUntil": "2018-04-30T11:39:58.623Z", + "scheduled": "2018-04-30T10:49:04.283Z", + "started": "2018-04-30T10:49:11.367Z", + "resolved": "2018-04-30T11:22:29.809Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.fe99a00a7b7fe50267c7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:47.391Z", + "deadline": "2018-05-01T09:54:47.391Z", + "expires": "2019-04-30T09:54:47.391Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fe99a00a7b7fe50267c7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:47.391Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:47.391Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:47.391Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--reftest-suite=jsreftest", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "JS Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-jsreftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-ccov/opt-jsreftest-e10s-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "suite": { + "flavor": "jsreftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "J2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BAj9iPSqSXultFTtFwuPEQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:13.131Z", + "expires": "2019-04-30T09:55:13.131Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b9eeee0f61d1c3b0", + "takenUntil": "2018-04-30T11:44:03.912Z", + "scheduled": "2018-04-30T10:37:24.547Z", + "started": "2018-04-30T10:37:54.111Z", + "resolved": "2018-04-30T11:35:04.703Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.75675e20b7ba5f3243a6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:13.131Z", + "deadline": "2018-05-01T09:55:13.131Z", + "expires": "2019-04-30T09:55:13.131Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.75675e20b7ba5f3243a6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:13.131Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:13.131Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:13.131Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BFprcNvaTTyIBrqOlmwFKQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:52.182Z", + "expires": "2019-04-30T09:54:52.182Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0d2a6aa662b6f1e2b", + "takenUntil": "2018-04-30T11:39:55.317Z", + "scheduled": "2018-04-30T10:49:04.145Z", + "started": "2018-04-30T10:49:08.118Z", + "resolved": "2018-04-30T11:27:31.780Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.32e0d1ea84e0bec36327" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:52.182Z", + "deadline": "2018-05-01T09:54:52.182Z", + "expires": "2019-04-30T09:54:52.182Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.32e0d1ea84e0bec36327", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:52.182Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:52.182Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:52.182Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-web-platform-tests-reftests-e10s-1" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-web-platform-tests-reftests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "Wr1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BHxyGXcYRgiHQpepULMcig", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.570Z", + "expires": "2019-04-30T09:55:26.570Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01f7a34262efc66e3", + "takenUntil": "2018-04-30T11:21:07.481Z", + "scheduled": "2018-04-30T10:30:05.060Z", + "started": "2018-04-30T10:30:20.949Z", + "resolved": "2018-04-30T11:08:03.573Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.adab3eda6201d636c1f0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.570Z", + "deadline": "2018-05-01T09:55:26.570Z", + "expires": "2019-04-30T09:55:26.570Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.adab3eda6201d636c1f0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.570Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.570Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.570Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BIarqJ5PToOfHY22tVIncg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:24.254Z", + "expires": "2019-04-30T09:55:24.254Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-037bfe6a0d40c10bf", + "takenUntil": "2018-04-30T11:05:44.072Z", + "scheduled": "2018-04-30T10:30:05.061Z", + "started": "2018-04-30T10:30:20.596Z", + "resolved": "2018-04-30T10:53:50.734Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.35c180189c365aba1c9f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:24.254Z", + "deadline": "2018-05-01T09:55:24.254Z", + "expires": "2019-04-30T09:55:24.254Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.35c180189c365aba1c9f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:24.254Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:24.254Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:24.254Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-14" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-14", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc14" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BKn-pE81SNONZBe9MtGckw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.245Z", + "expires": "2019-04-30T09:54:53.245Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-428", + "takenUntil": "2018-04-30T10:56:55.333Z", + "scheduled": "2018-04-30T10:36:54.744Z", + "started": "2018-04-30T10:36:55.411Z", + "resolved": "2018-04-30T10:52:52.628Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7372d1a365f51c6ed86c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.245Z", + "deadline": "2018-05-01T09:54:53.245Z", + "expires": "2019-04-30T09:54:53.245Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7372d1a365f51c6ed86c", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:53.245Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:53.245Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-mochitest-browser-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/opt-mochitest-browser-chrome-e10s-2", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BL_4gul8SMWYsxYtgz8How", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:05.299Z", + "expires": "2019-04-30T09:55:05.299Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0063", + "takenUntil": "2018-04-30T10:56:55.351Z", + "scheduled": "2018-04-30T10:36:54.870Z", + "started": "2018-04-30T10:36:55.432Z", + "resolved": "2018-04-30T10:47:52.849Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7bcfc55af0dc6e225e66" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:05.299Z", + "deadline": "2018-05-01T09:55:05.299Z", + "expires": "2019-04-30T09:55:05.299Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7bcfc55af0dc6e225e66", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:05.299Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:05.299Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BLdHMyp-QXyyH3YLhKX5aw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.393Z", + "expires": "2019-04-30T09:55:09.393Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-059ea2d049e953455", + "takenUntil": "2018-04-30T11:49:17.098Z", + "scheduled": "2018-04-30T10:27:41.389Z", + "started": "2018-04-30T10:27:42.561Z", + "resolved": "2018-04-30T11:31:11.472Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.a86e1fc21623f0a07d53" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.393Z", + "deadline": "2018-05-01T09:55:09.393Z", + "expires": "2019-04-30T09:55:09.393Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a86e1fc21623f0a07d53", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:09.393Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:09.393Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:09.393Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-web-platform-tests-3" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BNhd4b3sTPa26nH8ZDTKYg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:54.999Z", + "expires": "2019-04-30T09:54:54.999Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-092165fe2e810f74c", + "takenUntil": "2018-04-30T12:13:04.330Z", + "scheduled": "2018-04-30T11:42:56.852Z", + "started": "2018-04-30T11:53:04.411Z", + "resolved": "2018-04-30T12:05:46.474Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:54.999Z", + "deadline": "2018-05-01T09:54:54.999Z", + "expires": "2019-04-30T09:54:54.999Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:54.999Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:54.999Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-web-platform-tests-e10s-6" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-web-platform-tests-e10s-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BOt2B_OGQ0awfj_hDfVbOg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:53.501Z", + "expires": "2019-04-30T09:54:53.501Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-206", + "takenUntil": "2018-04-30T12:39:36.103Z", + "scheduled": "2018-04-30T11:45:32.735Z", + "started": "2018-04-30T11:45:33.307Z", + "resolved": "2018-04-30T12:23:01.763Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:53.501Z", + "deadline": "2018-05-01T09:54:53.501Z", + "expires": "2019-04-30T09:54:53.501Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:53.501Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:53.501Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=g1-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=g1-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g1 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-talos-g1-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-g1-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "g1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.910Z", + "expires": "2019-04-30T09:54:44.910Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06714c44ab4ea4e49", + "takenUntil": "2018-04-30T10:47:06.667Z", + "scheduled": "2018-04-30T09:56:18.360Z", + "started": "2018-04-30T09:56:19.157Z", + "resolved": "2018-04-30T10:36:53.375Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Tl6B_BUUSmC9qOs0Gw80sg", + "VH673vciR3id_ISON1uE5g", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.macosx64-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.macosx64-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.macosx64-opt", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.macosx64-opt", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.macosx64-opt", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.910Z", + "deadline": "2018-05-01T09:54:44.910Z", + "expires": "2019-04-30T09:54:44.910Z", + "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-mozilla-central-build-macosx64-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-central-build-macosx64-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:44.910Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Tl6B_BUUSmC9qOs0Gw80sg public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "USE_SCCACHE": "1", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "MacOS X x64 Cross-compile ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-macosx64/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64/opt" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "osx-cross" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "BRD0sguWSpuWP32hZjdcEg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.976Z", + "expires": "2019-04-30T09:55:15.976Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0023", + "takenUntil": "2018-04-30T10:56:55.205Z", + "scheduled": "2018-04-30T10:36:54.764Z", + "started": "2018-04-30T10:36:55.288Z", + "resolved": "2018-04-30T10:45:29.343Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.01ce4485ec8a9e2afbf2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.976Z", + "deadline": "2018-05-01T09:55:15.976Z", + "expires": "2019-04-30T09:55:15.976Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.01ce4485ec8a9e2afbf2", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:15.976Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:15.976Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--headless", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Marionette headless unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-marionette-headless-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-marionette-headless-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 1, + "symbol": "MnH", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BScTZNy9TXijQb2ETGJcIQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:57.774Z", + "expires": "2019-04-30T09:54:57.774Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-08c53abd34d85a972", + "takenUntil": "2018-04-30T11:18:38.632Z", + "scheduled": "2018-04-30T10:27:41.418Z", + "started": "2018-04-30T10:27:52.363Z", + "resolved": "2018-04-30T11:12:18.097Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c0d60e8dddd28fbe7b6f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:57.774Z", + "deadline": "2018-05-01T09:54:57.774Z", + "expires": "2019-04-30T09:54:57.774Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c0d60e8dddd28fbe7b6f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:57.774Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:57.774Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:57.774Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-16" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-16", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc16" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BUfdBWfASmOFgkAN1kCRyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:27.975Z", + "expires": "2019-04-30T09:55:27.975Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03a080b607f0d6216", + "takenUntil": "2018-04-30T11:42:19.716Z", + "scheduled": "2018-04-30T11:02:33.245Z", + "started": "2018-04-30T11:05:18.240Z", + "resolved": "2018-04-30T11:25:09.179Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:27.975Z", + "deadline": "2018-05-01T09:55:27.975Z", + "expires": "2019-04-30T09:55:27.975Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:27.975Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:27.975Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-mochitest-media-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-mochitest-media-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BVPOXPWJSrCpyMRt_VV6Gw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:07.869Z", + "expires": "2019-04-30T09:55:07.869Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0eac1e54734eabd94", + "takenUntil": "2018-04-30T10:47:43.429Z", + "scheduled": "2018-04-30T10:27:41.385Z", + "started": "2018-04-30T10:27:43.506Z", + "resolved": "2018-04-30T10:36:20.988Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.6e0375304d695bfc1f3e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:07.869Z", + "deadline": "2018-05-01T09:55:07.869Z", + "expires": "2019-04-30T09:55:07.869Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.6e0375304d695bfc1f3e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:07.869Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:07.869Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:07.869Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-mochitest-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-mochitest-6", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BW6AsNoNS8ajGDy53aas9w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:47.661Z", + "expires": "2019-04-30T09:54:47.661Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06ac2ae995e70af27", + "takenUntil": "2018-04-30T11:25:13.656Z", + "scheduled": "2018-04-30T10:49:04.534Z", + "started": "2018-04-30T10:49:50.384Z", + "resolved": "2018-04-30T11:09:38.202Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.5d01b107b485497c8cb7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:47.661Z", + "deadline": "2018-05-01T09:54:47.661Z", + "expires": "2019-04-30T09:54:47.661Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5d01b107b485497c8cb7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:47.661Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:47.661Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:47.661Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--code-coverage", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "a11y", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests", + "tier": 2, + "symbol": "a11y" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BX0tFIr7RvGX3p2NcEeNaQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:52.297Z", + "expires": "2019-04-30T09:54:52.297Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-009f9fcabef52c545", + "takenUntil": "2018-04-30T11:44:05.006Z", + "scheduled": "2018-04-30T10:37:24.563Z", + "started": "2018-04-30T10:37:54.188Z", + "resolved": "2018-04-30T11:25:17.789Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7906f41d506aa86eed91" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:52.297Z", + "deadline": "2018-05-01T09:54:52.297Z", + "expires": "2019-04-30T09:54:52.297Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7906f41d506aa86eed91", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:52.297Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:52.297Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:52.297Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=24", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-24" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-24", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 24, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R24" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BXTftNX7Q7mX1upMo9T4cw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.958Z", + "expires": "2019-04-30T09:55:29.958Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-02065fbd45bdc95bb", + "takenUntil": "2018-04-30T11:07:35.011Z", + "scheduled": "2018-04-30T10:30:05.442Z", + "started": "2018-04-30T10:32:11.465Z", + "resolved": "2018-04-30T11:00:38.697Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.e3d4e7a40813d5cb6edb" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.958Z", + "deadline": "2018-05-01T09:55:29.958Z", + "expires": "2019-04-30T09:55:29.958Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e3d4e7a40813d5cb6edb", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.958Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.958Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.958Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BXnTrmITQN-c3AeKUjgASw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.948Z", + "expires": "2019-04-30T09:55:15.948Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-linux64-ms-311", + "takenUntil": "2018-04-30T10:56:29.844Z", + "scheduled": "2018-04-30T10:36:28.694Z", + "started": "2018-04-30T10:36:30.473Z", + "resolved": "2018-04-30T10:40:56.769Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.f90639ce55d8fdd2e592" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.948Z", + "deadline": "2018-05-01T09:55:15.948Z", + "expires": "2019-04-30T09:55:15.948Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-30T09:55:15.948Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-30T09:55:15.948Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-30T09:55:15.948Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--suite=tp6-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos tp6 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-talos-tp6-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-tp6-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tp6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BYvGbTT2Qnmj0Xdn-UZtkQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.029Z", + "expires": "2019-04-30T09:55:09.029Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-08b99b758d85269ea", + "takenUntil": "2018-04-30T13:49:00.281Z", + "scheduled": "2018-04-30T11:15:44.460Z", + "started": "2018-04-30T11:29:53.116Z", + "resolved": "2018-04-30T13:29:52.244Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.029Z", + "deadline": "2018-05-01T09:55:09.029Z", + "expires": "2019-04-30T09:55:09.029Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:09.029Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:09.029Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --code-coverage --e10s --total-chunk=15 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-web-platform-tests-e10s-4" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 15 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BYy_0a_oQCKoVug8MRo_8A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.588Z", + "expires": "2019-04-30T09:55:00.588Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-042b1b1977abb481b", + "takenUntil": "2018-04-30T11:18:40.518Z", + "scheduled": "2018-04-30T10:27:41.431Z", + "started": "2018-04-30T10:27:53.486Z", + "resolved": "2018-04-30T11:02:43.283Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.f8126fda997b2a4e07e0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.588Z", + "deadline": "2018-05-01T09:55:00.588Z", + "expires": "2019-04-30T09:55:00.588Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f8126fda997b2a4e07e0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:00.588Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:00.588Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:00.588Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-reftest-no-accel-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-reftest-no-accel-e10s-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BZ3Gjn6JR6yfSWUquvNvQA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:20.586Z", + "expires": "2019-04-30T09:55:20.586Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-07318485daa1ba0de", + "takenUntil": "2018-04-30T11:44:06.648Z", + "scheduled": "2018-04-30T10:37:24.576Z", + "started": "2018-04-30T10:37:55.670Z", + "resolved": "2018-04-30T11:25:40.581Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.88315b5aea4c86baabd3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:20.586Z", + "deadline": "2018-05-01T09:55:20.586Z", + "expires": "2019-04-30T09:55:20.586Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.88315b5aea4c86baabd3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:20.586Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:20.586Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:20.586Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=28", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-28" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-28", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 28, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R28" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BZj_do8OSqKGjz-5VpAC5A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.129Z", + "expires": "2019-04-30T09:55:01.129Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-089dd4c93a0b078ac", + "takenUntil": "2018-04-30T12:06:51.414Z", + "scheduled": "2018-04-30T11:15:44.551Z", + "started": "2018-04-30T11:29:50.038Z", + "resolved": "2018-04-30T11:57:20.479Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.129Z", + "deadline": "2018-05-01T09:55:01.129Z", + "expires": "2019-04-30T09:55:01.129Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.129Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.129Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=crashtest --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=crashtest --code-coverage --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "C" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BdHc6qTrTnCRg3wvtDnWVg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.766Z", + "expires": "2019-04-30T09:55:29.766Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-04c09918b5648b8a4", + "takenUntil": "2018-04-30T10:50:12.151Z", + "scheduled": "2018-04-30T10:30:04.934Z", + "started": "2018-04-30T10:30:12.231Z", + "resolved": "2018-04-30T10:41:53.604Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2f3e503b0c785650a7b4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.766Z", + "deadline": "2018-05-01T09:55:29.766Z", + "expires": "2019-04-30T09:55:29.766Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2f3e503b0c785650a7b4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.766Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.766Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.766Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-xpcshell-3" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-xpcshell-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BdV5J0zTSvuwYIN26TuF-g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.363Z", + "expires": "2019-04-30T09:55:19.363Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06d3141f008b608a3", + "takenUntil": "2018-04-30T11:31:19.058Z", + "scheduled": "2018-04-30T10:38:59.804Z", + "started": "2018-04-30T10:40:31.715Z", + "resolved": "2018-04-30T11:12:16.779Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Aan3dsW3T7CXNeZvRE-LKQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.acae1495684a42821f79" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.363Z", + "deadline": "2018-05-01T09:55:19.363Z", + "expires": "2019-04-30T09:55:19.363Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.acae1495684a42821f79", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:19.363Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:19.363Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:19.363Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Be2XoBEiSf2px15ucs2Q-Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.257Z", + "expires": "2019-04-30T09:55:29.257Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-02cd2e630973363ee", + "takenUntil": "2018-04-30T11:30:48.888Z", + "scheduled": "2018-04-30T11:02:33.458Z", + "started": "2018-04-30T11:10:48.964Z", + "resolved": "2018-04-30T11:13:35.589Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.257Z", + "deadline": "2018-05-01T09:55:29.257Z", + "expires": "2019-04-30T09:55:29.257Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:29.257Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:29.257Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --tag remote --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-firefox-ui-functional-remote-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-firefox-ui-functional-remote-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "Fxfn-r-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Firefox functional tests (remote) with e10s", + "tier": 2, + "symbol": "en-US" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BeJgHnlISgGKUIo0j7ud7Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.600Z", + "expires": "2019-04-30T09:55:00.600Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-2", + "workerId": "i-00a56a628ff1a8e5f", + "takenUntil": "2018-04-30T12:12:37.675Z", + "scheduled": "2018-04-30T11:45:32.908Z", + "started": "2018-04-30T11:52:37.766Z", + "resolved": "2018-04-30T12:04:40.422Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.600Z", + "deadline": "2018-05-01T09:55:00.600Z", + "expires": "2019-04-30T09:55:00.600Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:00.600Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:00.600Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bf-x9ag2S_CJ07SyN6NdWw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.769Z", + "expires": "2019-04-30T09:55:00.769Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a867cc9cdbe284fc", + "takenUntil": "2018-04-30T11:44:08.457Z", + "scheduled": "2018-04-30T10:37:24.574Z", + "started": "2018-04-30T10:37:57.877Z", + "resolved": "2018-04-30T11:35:37.126Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ec618b7b947659c0960e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.769Z", + "deadline": "2018-05-01T09:55:00.769Z", + "expires": "2019-04-30T09:55:00.769Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ec618b7b947659c0960e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:00.769Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:00.769Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:00.769Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=42", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-42" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-42", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 42, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R42" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BfDQ3lJfQ6GrX9kmaXX5tg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:17.720Z", + "expires": "2019-04-30T09:55:17.720Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-066e08e27085e75fb", + "takenUntil": "2018-04-30T11:28:50.611Z", + "scheduled": "2018-04-30T10:37:24.605Z", + "started": "2018-04-30T10:38:03.043Z", + "resolved": "2018-04-30T11:19:16.669Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2e700c52b023aeab9b1d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:17.720Z", + "deadline": "2018-05-01T09:55:17.720Z", + "expires": "2019-04-30T09:55:17.720Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2e700c52b023aeab9b1d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:17.720Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:17.720Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:17.720Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=40", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-40" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-40", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 40, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R40" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bh-rzmoIQGSlyOlkqXX_mw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:13.988Z", + "expires": "2019-04-30T09:55:13.988Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-365", + "takenUntil": "2018-04-30T11:11:48.244Z", + "scheduled": "2018-04-30T10:34:47.114Z", + "started": "2018-04-30T10:34:47.725Z", + "resolved": "2018-04-30T10:53:19.466Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "KtBhdwcgTYOMuvxna77mGw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2266eabc8106db2738f8" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:13.988Z", + "deadline": "2018-05-01T09:55:13.988Z", + "expires": "2019-04-30T09:55:13.988Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2266eabc8106db2738f8", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:13.988Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:13.988Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=2" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "KtBhdwcgTYOMuvxna77mGw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/debug-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/debug-mochitest-chrome-2", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bj-0rNgzTlqRSB9qMX8GCg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.194Z", + "expires": "2019-04-30T09:55:09.194Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-08b6be510d776349c", + "takenUntil": "2018-04-30T11:48:33.037Z", + "scheduled": "2018-04-30T11:13:17.316Z", + "started": "2018-04-30T11:28:33.114Z", + "resolved": "2018-04-30T11:39:24.152Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.194Z", + "deadline": "2018-05-01T09:55:09.194Z", + "expires": "2019-04-30T09:55:09.194Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:09.194Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:09.194Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s --enable-webrender" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-qr/opt-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-qr/opt-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "C" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BjfQa9pxS4q5wZcZEtOPyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.077Z", + "expires": "2019-04-30T09:55:10.077Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-07cc60ec6357b9ff8", + "takenUntil": "2018-04-30T13:14:45.707Z", + "scheduled": "2018-04-30T11:15:44.523Z", + "started": "2018-04-30T11:29:41.091Z", + "resolved": "2018-04-30T13:09:38.855Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.077Z", + "deadline": "2018-05-01T09:55:10.077Z", + "expires": "2019-04-30T09:55:10.077Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:10.077Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:10.077Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --code-coverage --e10s --total-chunk=15 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-web-platform-tests-e10s-6" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-web-platform-tests-e10s-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 15 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Bl4p_ZruTcSMClXYXTkGhw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.730Z", + "expires": "2019-04-30T09:55:04.730Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0d9f7ab7ba904b9d0", + "takenUntil": "2018-04-30T11:53:30.670Z", + "scheduled": "2018-04-30T11:13:17.556Z", + "started": "2018-04-30T11:33:30.750Z", + "resolved": "2018-04-30T11:40:12.619Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.730Z", + "deadline": "2018-05-01T09:55:04.730Z", + "expires": "2019-04-30T09:55:04.730Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:04.730Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:04.730Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-webgl-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-webgl-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BmTfPkwSTiqa5g9Xus-bdw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.108Z", + "expires": "2019-04-30T09:55:10.108Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03b0a5aae9c676118", + "takenUntil": "2018-04-30T11:03:52.346Z", + "scheduled": "2018-04-30T10:27:41.515Z", + "started": "2018-04-30T10:28:29.069Z", + "resolved": "2018-04-30T10:57:33.654Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c8470d7e12f8f3dea748" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.108Z", + "deadline": "2018-05-01T09:55:10.108Z", + "expires": "2019-04-30T09:55:10.108Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c8470d7e12f8f3dea748", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.108Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.108Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.108Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-mochitest-chrome-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-mochitest-chrome-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BoWMpNEkRzO9My-KEkEvwg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:49.875Z", + "expires": "2019-04-30T09:54:49.875Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03676cb0605e42ac3", + "takenUntil": "2018-04-30T11:27:28.360Z", + "scheduled": "2018-04-30T10:36:28.833Z", + "started": "2018-04-30T10:36:41.594Z", + "resolved": "2018-04-30T11:10:00.707Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.768342f9726a59e71c3a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:49.875Z", + "deadline": "2018-05-01T09:54:49.875Z", + "expires": "2019-04-30T09:54:49.875Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.768342f9726a59e71c3a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:49.875Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:49.875Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:49.875Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/opt-web-platform-tests-e10s-5" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-web-platform-tests-e10s-5" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Bp2o-arETpuL8ZPgxEdb6Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:59.486Z", + "expires": "2019-04-30T09:54:59.486Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0cc83585771bafb4f", + "takenUntil": "2018-04-30T11:46:13.181Z", + "scheduled": "2018-04-30T11:13:17.386Z", + "started": "2018-04-30T11:26:13.263Z", + "resolved": "2018-04-30T11:36:02.557Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:59.486Z", + "deadline": "2018-05-01T09:54:59.486Z", + "expires": "2019-04-30T09:54:59.486Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:59.486Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:59.486Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BpGC0jiuS7CL459JQjKgig", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:46.564Z", + "expires": "2019-04-30T09:54:46.564Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-094f29d4dd0447377", + "takenUntil": "2018-04-30T11:55:46.231Z", + "scheduled": "2018-04-30T10:49:04.533Z", + "started": "2018-04-30T10:49:35.095Z", + "resolved": "2018-04-30T11:44:40.616Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.b9772ce7f173546d1b06" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:46.564Z", + "deadline": "2018-05-01T09:54:46.564Z", + "expires": "2019-04-30T09:54:46.564Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b9772ce7f173546d1b06", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:46.564Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:46.564Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:46.564Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--code-coverage", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-mochitest-browser-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-browser-chrome-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BtTwQMGCTIqhUjSW4o5OjA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:20.946Z", + "expires": "2019-04-30T09:55:20.946Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f1a7e32b88aa92fe", + "takenUntil": "2018-04-30T10:57:08.651Z", + "scheduled": "2018-04-30T10:34:56.544Z", + "started": "2018-04-30T10:37:08.730Z", + "resolved": "2018-04-30T10:45:09.906Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.d07499c476b5ee6ce57b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:20.946Z", + "deadline": "2018-05-01T09:55:20.946Z", + "expires": "2019-04-30T09:55:20.946Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.d07499c476b5ee6ce57b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:20.946Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:20.946Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:20.946Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=4" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-mochitest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-e10s-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BtpF_CA7SG6ZmWSq58C5YA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.741Z", + "expires": "2019-04-30T09:55:26.741Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f9d322d52db65e63", + "takenUntil": "2018-04-30T11:38:04.804Z", + "scheduled": "2018-04-30T11:02:39.920Z", + "started": "2018-04-30T11:02:41.236Z", + "resolved": "2018-04-30T11:31:57.407Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.df5769393a5cdc4e4787" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.741Z", + "deadline": "2018-05-01T09:55:26.741Z", + "expires": "2019-04-30T09:55:26.741Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.df5769393a5cdc4e4787", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.741Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.741Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.741Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-web-platform-tests-e10s-8" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-e10s-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bu3Kb6F_Qx-GluYObRsAXg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.424Z", + "expires": "2019-04-30T09:55:03.424Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-00c49b09b32a6d0e5", + "takenUntil": "2018-04-30T10:48:51.687Z", + "scheduled": "2018-04-30T10:27:41.608Z", + "started": "2018-04-30T10:28:51.767Z", + "resolved": "2018-04-30T10:40:39.783Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2ca7943b487a8c11bb33" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.424Z", + "deadline": "2018-05-01T09:55:03.424Z", + "expires": "2019-04-30T09:55:03.424Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2ca7943b487a8c11bb33", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:03.424Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:03.424Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:03.424Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "BwYacD6MRlObrbwtcX8Ekw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:11.240Z", + "expires": "2019-04-30T09:55:11.240Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-019fd037fd06cbc77", + "takenUntil": "2018-04-30T12:23:18.980Z", + "scheduled": "2018-04-30T11:15:44.497Z", + "started": "2018-04-30T11:29:17.914Z", + "resolved": "2018-04-30T12:14:49.130Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:11.240Z", + "deadline": "2018-05-01T09:55:11.240Z", + "expires": "2019-04-30T09:55:11.240Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:11.240Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:11.240Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --mochitest-suite=chrome --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --code-coverage --total-chunk=3 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-chrome-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests", + "tier": 2, + "symbol": "c2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BymPY8h0TCmAbJkK8VssfA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.180Z", + "expires": "2019-04-30T09:54:55.180Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-215", + "takenUntil": "2018-04-30T12:05:33.271Z", + "scheduled": "2018-04-30T11:45:32.685Z", + "started": "2018-04-30T11:45:33.356Z", + "resolved": "2018-04-30T11:57:01.237Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.180Z", + "deadline": "2018-05-01T09:54:55.180Z", + "expires": "2019-04-30T09:54:55.180Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:55.180Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:55.180Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-talos-tps-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bz747RvUQyCjHp-VkPqmbA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.086Z", + "expires": "2019-04-30T09:55:10.086Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0654f117208db945c", + "takenUntil": "2018-04-30T10:51:19.839Z", + "scheduled": "2018-04-30T10:31:11.533Z", + "started": "2018-04-30T10:31:19.922Z", + "resolved": "2018-04-30T10:39:13.391Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "VSIQ5dcvSzOIQaZ3IA835w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.b1cfb6b7d390e8ceaa8b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.086Z", + "deadline": "2018-05-01T09:55:10.086Z", + "expires": "2019-04-30T09:55:10.086Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b1cfb6b7d390e8ceaa8b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.086Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.086Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.086Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/geckoview_example.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/target.test_packages.json", + "--test-suite=geckoview", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/geckoview_example.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Geckoview run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.2-x86/opt-geckoview" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.2-x86/opt-geckoview" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "geckoview", + "name": "geckoview" + }, + "treeherder": { + "machine": { + "platform": "android-4-2-x86" + }, + "tier": 1, + "symbol": "gv", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Bzhz7GRoRtK6akW7Vcp0GQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.328Z", + "expires": "2019-04-30T09:55:03.328Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03735b0f0e9153a88", + "takenUntil": "2018-04-30T11:47:48.741Z", + "scheduled": "2018-04-30T11:13:17.299Z", + "started": "2018-04-30T11:27:48.819Z", + "resolved": "2018-04-30T11:34:37.936Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.328Z", + "deadline": "2018-05-01T09:55:03.328Z", + "expires": "2019-04-30T09:55:03.328Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:03.328Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:03.328Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --enable-webrender --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-qr/opt-mochitest-webgl-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-qr/opt-mochitest-webgl-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C-rWIGIESqCMrMXws98oow", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:25.496Z", + "expires": "2019-04-30T09:55:25.496Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-00aeea37006cb7b18", + "takenUntil": "2018-04-30T11:38:04.333Z", + "scheduled": "2018-04-30T11:02:39.934Z", + "started": "2018-04-30T11:02:40.708Z", + "resolved": "2018-04-30T11:23:16.973Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ac25afa26709f12157ce" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:25.496Z", + "deadline": "2018-05-01T09:55:25.496Z", + "expires": "2019-04-30T09:55:25.496Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ac25afa26709f12157ce", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:25.496Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:25.496Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:25.496Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-web-platform-tests-wdspec-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-wdspec-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wd" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "C0xojztXSlq4SeCH-M-XnQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:46.746Z", + "expires": "2019-04-30T09:54:46.746Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-1", + "workerId": "i-06a96af93cef45fb4", + "takenUntil": "2018-04-30T11:24:28.982Z", + "scheduled": "2018-04-30T10:49:04.074Z", + "started": "2018-04-30T10:49:05.379Z", + "resolved": "2018-04-30T11:07:09.843Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.463b04fd4bdd917cc721" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:46.746Z", + "deadline": "2018-05-01T09:54:46.746Z", + "expires": "2019-04-30T09:54:46.746Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.463b04fd4bdd917cc721", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:46.746Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:46.746Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:46.746Z", + "type": "directory" + } + }, + "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/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "NEED_PULSEAUDIO": "true", + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-telemetry-tests-client-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-telemetry-tests-client-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "tt-c-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Telemetry client marionette tests with e10s", + "tier": 3, + "symbol": "" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C4gR1cv8SpOBakyOu6LKCw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:45.014Z", + "expires": "2019-04-30T09:54:45.014Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ef3968db77041cf3", + "takenUntil": "2018-04-30T10:48:37.759Z", + "scheduled": "2018-04-30T09:56:18.384Z", + "started": "2018-04-30T09:57:50.703Z", + "resolved": "2018-04-30T10:37:22.732Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "JE5PzNT_QJyUAPAUH3YI0g", + "OWMKem5GSeeYEfwcgoqEZw", + "U-XQGxP7QEyJte4Iy0rCxA", + "VH673vciR3id_ISON1uE5g", + "YksHkdRuQt6Ux57gaXRavw", + "aBhwAxEPTbCaiCwcbSySGQ", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-central.pushlog-id.33921.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.mobile.android-api-16-debug", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.mobile.android-api-16-debug", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:45.014Z", + "deadline": "2018-05-01T09:54:45.014Z", + "expires": "2019-04-30T09:54:45.014Z", + "scopes": [ + "queue:get-artifact:project/gecko/android-ndk/*", + "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-mozilla-central-build-android-api-16-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "JE5PzNT_QJyUAPAUH3YI0g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-build-android-api-16-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/android/R": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "expires": "2019-04-30T09:54:45.014Z", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk", + "expires": "2019-04-30T09:54:45.014Z", + "type": "file" + }, + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:45.014Z", + "type": "directory" + }, + "public/android/maven": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "expires": "2019-04-30T09:54:45.014Z", + "type": "directory" + }, + "public/build/geckoview-androidTest.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/officialWithGeckoBinariesNoMinApi/debug/geckoview-official-withGeckoBinaries-noMinApi-debug-androidTest.apk", + "expires": "2019-04-30T09:54:45.014Z", + "type": "file" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@aBhwAxEPTbCaiCwcbSySGQ project/gecko/android-ndk/android-ndk.tar.xz@OWMKem5GSeeYEfwcgoqEZw project/gecko/android-sdk/android-sdk-linux.tar.xz@U-XQGxP7QEyJte4Iy0rCxA public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@YksHkdRuQt6Ux57gaXRavw public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16-debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "Android 4.0 api-16+ Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-android-api-16/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-android-api-16/debug" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "JE5PzNT_QJyUAPAUH3YI0g" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "C4y7z9FeQLGJgDsNBYFpbQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:28.421Z", + "expires": "2019-04-30T09:55:28.421Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d2bea8052cbe5f25", + "takenUntil": "2018-04-30T11:39:56.040Z", + "scheduled": "2018-04-30T11:02:33.205Z", + "started": "2018-04-30T11:02:54.679Z", + "resolved": "2018-04-30T11:24:03.448Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:28.421Z", + "deadline": "2018-05-01T09:55:28.421Z", + "expires": "2019-04-30T09:55:28.421Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:28.421Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:28.421Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --gtest-suite=gtest" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-gtest" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-gtest" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "machine": { + "platform": "windows7-32" + }, + "tier": 1, + "symbol": "GTest", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "C7U2rw5ITpuTM1Eh5ZD2hw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:07.858Z", + "expires": "2019-04-30T09:55:07.858Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0c8029337230b87ee", + "takenUntil": "2018-04-30T11:34:29.945Z", + "scheduled": "2018-04-30T10:27:41.639Z", + "started": "2018-04-30T10:28:18.920Z", + "resolved": "2018-04-30T11:28:38.089Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.349386be58b516851356" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:07.858Z", + "deadline": "2018-05-01T09:55:07.858Z", + "expires": "2019-04-30T09:55:07.858Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.349386be58b516851356", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:07.858Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:07.858Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:07.858Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-web-platform-tests-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests", + "tier": 1, + "symbol": "wpt6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "C81N6BcwSfSuTez0znOUgg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:56.503Z", + "expires": "2019-04-30T09:54:56.503Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03dbf84929b8e7112", + "takenUntil": "2018-04-30T13:14:48.731Z", + "scheduled": "2018-04-30T11:15:44.548Z", + "started": "2018-04-30T11:29:46.068Z", + "resolved": "2018-04-30T13:08:17.628Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:56.503Z", + "deadline": "2018-05-01T09:54:56.503Z", + "expires": "2019-04-30T09:54:56.503Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:56.503Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:56.503Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --code-coverage --e10s --total-chunk=7 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C9qCNimNSvKaZGzAFpYK3w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.250Z", + "expires": "2019-04-30T09:55:12.250Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d22c3a8e3625d129", + "takenUntil": "2018-04-30T12:10:13.499Z", + "scheduled": "2018-04-30T11:45:32.875Z", + "started": "2018-04-30T11:50:13.580Z", + "resolved": "2018-04-30T12:02:53.797Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.250Z", + "deadline": "2018-05-01T09:55:12.250Z", + "expires": "2019-04-30T09:55:12.250Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:12.250Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:12.250Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CD-nndrLTv2HK-pImafsbA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.712Z", + "expires": "2019-04-30T09:55:26.712Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0c2576fdf57f7c9be", + "takenUntil": "2018-04-30T11:23:13.419Z", + "scheduled": "2018-04-30T11:02:40.309Z", + "started": "2018-04-30T11:03:13.502Z", + "resolved": "2018-04-30T11:18:29.956Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.59541ca529a3572cbe68" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.712Z", + "deadline": "2018-05-01T09:55:26.712Z", + "expires": "2019-04-30T09:55:26.712Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.59541ca529a3572cbe68", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.712Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.712Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.712Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CFHEUGcxQIa7bmEWjip34w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.576Z", + "expires": "2019-04-30T09:55:26.576Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-096", + "takenUntil": "2018-04-30T11:22:41.634Z", + "scheduled": "2018-04-30T11:02:40.311Z", + "started": "2018-04-30T11:02:41.718Z", + "resolved": "2018-04-30T11:07:34.149Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.1da8226a6b568f53632d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.576Z", + "deadline": "2018-05-01T09:55:26.576Z", + "expires": "2019-04-30T09:55:26.576Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-30T09:55:26.576Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-30T09:55:26.576Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-30T09:55:26.576Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--suite=perf-reftest-singletons-e10s", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos perf-reftest singletons ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-talos-perf-reftest-singletons-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-perf-reftest-singletons-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "ps" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CFfVkmdJRrOmfF71-WNcZw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:24.056Z", + "expires": "2019-04-30T09:55:24.056Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-002120c06350a0138", + "takenUntil": "2018-04-30T12:04:51.686Z", + "scheduled": "2018-04-30T11:02:33.463Z", + "started": "2018-04-30T11:10:48.810Z", + "resolved": "2018-04-30T11:56:23.658Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:24.056Z", + "deadline": "2018-05-01T09:55:24.056Z", + "expires": "2019-04-30T09:55:24.056Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:24.056Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:24.056Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CGUvl0YaRMWFL1FQIQjwgA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.187Z", + "expires": "2019-04-30T09:55:10.187Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0f30b529a29fb3584", + "takenUntil": "2018-04-30T11:40:53.789Z", + "scheduled": "2018-04-30T11:02:59.016Z", + "started": "2018-04-30T11:03:52.900Z", + "resolved": "2018-04-30T11:33:50.433Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.187Z", + "deadline": "2018-05-01T09:55:10.187Z", + "expires": "2019-04-30T09:55:10.187Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:10.187Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:10.187Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CM5lVKq7Q2mZDfN3Ff1tpQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:06.993Z", + "expires": "2019-04-30T09:55:06.993Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a4786d3e64ea5ee7", + "takenUntil": "2018-04-30T11:40:01.408Z", + "scheduled": "2018-04-30T11:02:59.035Z", + "started": "2018-04-30T11:03:00.276Z", + "resolved": "2018-04-30T11:28:35.816Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:06.993Z", + "deadline": "2018-05-01T09:55:06.993Z", + "expires": "2019-04-30T09:55:06.993Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:06.993Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:06.993Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CO266CZcTTSEvSA94KjslA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:02.794Z", + "expires": "2019-04-30T09:55:02.794Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06e47607050e356cb", + "takenUntil": "2018-04-30T12:07:38.583Z", + "scheduled": "2018-04-30T11:15:44.848Z", + "started": "2018-04-30T11:30:37.943Z", + "resolved": "2018-04-30T12:03:22.268Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:02.794Z", + "deadline": "2018-05-01T09:55:02.794Z", + "expires": "2019-04-30T09:55:02.794Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:02.794Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:02.794Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --code-coverage --e10s --total-chunk=10 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "dt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CO9oqE-_SteibwS1d6aqJg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.928Z", + "expires": "2019-04-30T09:55:23.928Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-071c5458c16f08004", + "takenUntil": "2018-04-30T11:36:21.012Z", + "scheduled": "2018-04-30T10:30:04.931Z", + "started": "2018-04-30T10:30:10.930Z", + "resolved": "2018-04-30T11:16:35.138Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.3ec7abedbc47b7ff7108" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.928Z", + "deadline": "2018-05-01T09:55:23.928Z", + "expires": "2019-04-30T09:55:23.928Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3ec7abedbc47b7ff7108", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:23.928Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:23.928Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:23.928Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "COQnuAapRaqhRRUA5dQo7Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:08.611Z", + "expires": "2019-04-30T09:55:08.611Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0102e6dce4da1da55", + "takenUntil": "2018-04-30T11:26:40.396Z", + "scheduled": "2018-04-30T11:02:59.057Z", + "started": "2018-04-30T11:06:40.474Z", + "resolved": "2018-04-30T11:12:41.151Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:08.611Z", + "deadline": "2018-05-01T09:55:08.611Z", + "expires": "2019-04-30T09:55:08.611Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:08.611Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:08.611Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-gpu-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-gpu-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gpu" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "COrmP_9mTV2MXW_4bNh-ag", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:28.981Z", + "expires": "2019-04-30T09:55:28.981Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-046ea192fef9d6a64", + "takenUntil": "2018-04-30T11:45:05.373Z", + "scheduled": "2018-04-30T11:02:33.255Z", + "started": "2018-04-30T11:08:03.480Z", + "resolved": "2018-04-30T11:32:13.000Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:28.981Z", + "deadline": "2018-05-01T09:55:28.981Z", + "expires": "2019-04-30T09:55:28.981Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:28.981Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:28.981Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-4" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CQMQawvwQqSJILmGz0AR3Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:21.368Z", + "expires": "2019-04-30T09:55:21.368Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-074b3414c7988d61a", + "takenUntil": "2018-04-30T11:22:40.631Z", + "scheduled": "2018-04-30T11:02:39.918Z", + "started": "2018-04-30T11:02:40.712Z", + "resolved": "2018-04-30T11:08:34.920Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.aec92249faf572f0fe63" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:21.368Z", + "deadline": "2018-05-01T09:55:21.368Z", + "expires": "2019-04-30T09:55:21.368Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.aec92249faf572f0fe63", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:21.368Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:21.368Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:21.368Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--tag", + "remote", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "firefox_ui_tests/taskcluster.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "firefox_ui_tests/functional.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-firefox-ui-functional-remote-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-firefox-ui-functional-remote-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "functional remote", + "name": "firefox-ui" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "Fxfn-r-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Firefox functional tests (remote) with e10s", + "tier": 2, + "symbol": "en-US" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CQVhSjOLR1ihMbONq0S1qA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.604Z", + "expires": "2019-04-30T09:55:01.604Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0125", + "takenUntil": "2018-04-30T10:56:55.384Z", + "scheduled": "2018-04-30T10:36:54.886Z", + "started": "2018-04-30T10:36:55.466Z", + "resolved": "2018-04-30T10:46:49.368Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.bcb902e8c00faacc288e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.604Z", + "deadline": "2018-05-01T09:55:01.604Z", + "expires": "2019-04-30T09:55:01.604Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.bcb902e8c00faacc288e", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.604Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.604Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-mochitest-devtools-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/opt-mochitest-devtools-chrome-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CUVW2Z9jRUuh8vv21or4kA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:13.713Z", + "expires": "2019-04-30T09:55:13.713Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ddc33c1c81755903", + "takenUntil": "2018-04-30T11:53:33.113Z", + "scheduled": "2018-04-30T11:13:17.557Z", + "started": "2018-04-30T11:33:33.195Z", + "resolved": "2018-04-30T11:39:54.673Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:13.713Z", + "deadline": "2018-05-01T09:55:13.713Z", + "expires": "2019-04-30T09:55:13.713Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:13.713Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:13.713Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-webgl-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-webgl-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CUrpyfkKTFe8aYOmiNOTRA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:58.495Z", + "expires": "2019-04-30T09:54:58.495Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-074ed4c5ec08e1c5e", + "takenUntil": "2018-04-30T11:19:54.600Z", + "scheduled": "2018-04-30T10:27:41.659Z", + "started": "2018-04-30T10:29:07.718Z", + "resolved": "2018-04-30T11:03:47.371Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.b48082c0ca6aebecf297" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:58.495Z", + "deadline": "2018-05-01T09:54:58.495Z", + "expires": "2019-04-30T09:54:58.495Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b48082c0ca6aebecf297", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:58.495Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:58.495Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:58.495Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-reftest-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-reftest-e10s-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CVEPaz7TSGu-1OoHbiLwGA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.443Z", + "expires": "2019-04-30T09:55:29.443Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-0471ab86fa0c7cbdf", + "takenUntil": "2018-04-30T11:06:20.520Z", + "scheduled": "2018-04-30T10:30:05.245Z", + "started": "2018-04-30T10:30:57.376Z", + "resolved": "2018-04-30T10:55:16.612Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2893e269c33b60ff5dcf" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.443Z", + "deadline": "2018-05-01T09:55:29.443Z", + "expires": "2019-04-30T09:55:29.443Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2893e269c33b60ff5dcf", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.443Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.443Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.443Z", + "type": "directory" + } + }, + "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/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "NEED_PULSEAUDIO": "true", + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-telemetry-tests-client-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/debug-telemetry-tests-client-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "tt-c-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Telemetry client marionette tests with e10s", + "tier": 3, + "symbol": "" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CVH1q-xUR7apKdhxaPsykw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.537Z", + "expires": "2019-04-30T09:55:29.537Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-048b41e8ca0e9a443", + "takenUntil": "2018-04-30T11:36:20.318Z", + "scheduled": "2018-04-30T10:30:05.069Z", + "started": "2018-04-30T10:30:10.153Z", + "resolved": "2018-04-30T11:30:40.235Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.a6bb7cc1d8577eae4275" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.537Z", + "deadline": "2018-05-01T09:55:29.537Z", + "expires": "2019-04-30T09:55:29.537Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a6bb7cc1d8577eae4275", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.537Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.537Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.537Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-7" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-7" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CWVbd7TKREavXAAUwFmNKA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.055Z", + "expires": "2019-04-30T09:55:23.055Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a40c99ebaa06771c", + "takenUntil": "2018-04-30T11:07:30.103Z", + "scheduled": "2018-04-30T10:30:05.016Z", + "started": "2018-04-30T10:32:06.447Z", + "resolved": "2018-04-30T11:00:45.851Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.fe873621a0d30d31d91c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.055Z", + "deadline": "2018-05-01T09:55:23.055Z", + "expires": "2019-04-30T09:55:23.055Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fe873621a0d30d31d91c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:23.055Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:23.055Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:23.055Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-9" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-9", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc9" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CWZL0V1-Qt-6AO2HutCJdg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.081Z", + "expires": "2019-04-30T09:54:55.081Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-379", + "takenUntil": "2018-04-30T10:56:55.387Z", + "scheduled": "2018-04-30T10:36:54.893Z", + "started": "2018-04-30T10:36:55.472Z", + "resolved": "2018-04-30T10:53:14.874Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.841817d267cc4c825f48" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.081Z", + "deadline": "2018-05-01T09:54:55.081Z", + "expires": "2019-04-30T09:54:55.081Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.841817d267cc4c825f48", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:55.081Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:55.081Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CXea5s2YTmmtNbUc0PrlSg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.306Z", + "expires": "2019-04-30T09:55:23.306Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0c3df863b036a1eab", + "takenUntil": "2018-04-30T11:05:30.352Z", + "scheduled": "2018-04-30T10:30:04.900Z", + "started": "2018-04-30T10:30:06.788Z", + "resolved": "2018-04-30T11:00:11.881Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.edf82950356fa06ce70a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.306Z", + "deadline": "2018-05-01T09:55:23.306Z", + "expires": "2019-04-30T09:55:23.306Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.edf82950356fa06ce70a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:23.306Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:23.306Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:23.306Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-clipboard-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-clipboard-e10s", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "cl" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CXmm7_BsRqGXN40Xpt7bvQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:17.635Z", + "expires": "2019-04-30T09:55:17.635Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-249", + "takenUntil": "2018-04-30T11:50:47.457Z", + "scheduled": "2018-04-30T11:13:46.363Z", + "started": "2018-04-30T11:13:46.981Z", + "resolved": "2018-04-30T11:34:18.391Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:17.635Z", + "deadline": "2018-05-01T09:55:17.635Z", + "expires": "2019-04-30T09:55:17.635Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:17.635Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:17.635Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-talos-g5-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "g5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CYMMkeS_QCyE2eh-IQdBuQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.164Z", + "expires": "2019-04-30T09:55:15.164Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-084a9eb602d80bcbe", + "takenUntil": "2018-04-30T11:44:25.215Z", + "scheduled": "2018-04-30T10:37:24.698Z", + "started": "2018-04-30T10:38:14.771Z", + "resolved": "2018-04-30T11:29:27.718Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.f94b9bce74eda5067265" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.164Z", + "deadline": "2018-05-01T09:55:15.164Z", + "expires": "2019-04-30T09:55:15.164Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f94b9bce74eda5067265", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:15.164Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:15.164Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:15.164Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CY_5qAiRTfqw-2AcXkuxsw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:57.953Z", + "expires": "2019-04-30T09:54:57.953Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06359d59ebc465286", + "takenUntil": "2018-04-30T11:52:03.481Z", + "scheduled": "2018-04-30T11:13:17.358Z", + "started": "2018-04-30T11:32:03.563Z", + "resolved": "2018-04-30T11:39:24.738Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:57.953Z", + "deadline": "2018-05-01T09:54:57.953Z", + "expires": "2019-04-30T09:54:57.953Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:57.953Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:57.953Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-webgl-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-webgl-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CZQAAqhDQLGm9Qo2XFxcyQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:51.176Z", + "expires": "2019-04-30T09:54:51.176Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f8b39536a102f8e8", + "takenUntil": "2018-04-30T12:26:05.357Z", + "scheduled": "2018-04-30T11:15:44.949Z", + "started": "2018-04-30T11:32:02.841Z", + "resolved": "2018-04-30T12:20:55.490Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:51.176Z", + "deadline": "2018-05-01T09:54:51.176Z", + "expires": "2019-04-30T09:54:51.176Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:51.176Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:51.176Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --code-coverage --e10s --total-chunk=10 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-mochitest-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C_n2WyWfTwSx839gqWkspQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:16.610Z", + "expires": "2019-04-30T09:55:16.610Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-08d8e5ec6f43326c6", + "takenUntil": "2018-04-30T11:14:16.255Z", + "scheduled": "2018-04-30T10:38:29.246Z", + "started": "2018-04-30T10:38:52.997Z", + "resolved": "2018-04-30T10:59:48.068Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.dfcb13a625fa5db14139" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:16.610Z", + "deadline": "2018-05-01T09:55:16.610Z", + "expires": "2019-04-30T09:55:16.610Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.dfcb13a625fa5db14139", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:16.610Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:16.610Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:16.610Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-mochitest-media-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-mochitest-media-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CaVAfJ0oQwyed7RtQda5sw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.988Z", + "expires": "2019-04-30T09:55:19.988Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f19364a14c6fe057", + "takenUntil": "2018-04-30T10:57:26.545Z", + "scheduled": "2018-04-30T10:36:28.809Z", + "started": "2018-04-30T10:37:26.684Z", + "resolved": "2018-04-30T10:45:39.995Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.1311b68375f81cc90cc4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.988Z", + "deadline": "2018-05-01T09:55:19.988Z", + "expires": "2019-04-30T09:55:19.988Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1311b68375f81cc90cc4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:19.988Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:19.988Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:19.988Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/opt-cppunit" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "linux64-qr" + }, + "tier": 2, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CbJLuGfcTgKF82sa0_barQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.058Z", + "expires": "2019-04-30T09:55:09.058Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-378", + "takenUntil": "2018-04-30T10:56:55.443Z", + "scheduled": "2018-04-30T10:36:54.869Z", + "started": "2018-04-30T10:36:55.520Z", + "resolved": "2018-04-30T10:47:04.305Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c13cff48d66abc5adf93" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.058Z", + "deadline": "2018-05-01T09:55:09.058Z", + "expires": "2019-04-30T09:55:09.058Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c13cff48d66abc5adf93", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:09.058Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:09.058Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-mochitest-chrome-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/opt-mochitest-chrome-1", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CcI7nABlROuALL0KYm-itQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:20.938Z", + "expires": "2019-04-30T09:55:20.938Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-078", + "takenUntil": "2018-04-30T12:05:33.276Z", + "scheduled": "2018-04-30T11:45:32.731Z", + "started": "2018-04-30T11:45:33.355Z", + "resolved": "2018-04-30T11:55:38.676Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:20.938Z", + "deadline": "2018-05-01T09:55:20.938Z", + "expires": "2019-04-30T09:55:20.938Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:20.938Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:20.938Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=perf-reftest-e10s --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=perf-reftest-e10s --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos perf-reftest ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-talos-perf-reftest-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-perf-reftest-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "p" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CefqzJmcT8WNkHMfWLGmVw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.431Z", + "expires": "2019-04-30T09:55:00.431Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0148", + "takenUntil": "2018-04-30T10:56:55.388Z", + "scheduled": "2018-04-30T10:36:54.898Z", + "started": "2018-04-30T10:36:55.479Z", + "resolved": "2018-04-30T10:48:12.496Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.3d1a1ccae8348fc49704" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.431Z", + "deadline": "2018-05-01T09:55:00.431Z", + "expires": "2019-04-30T09:55:00.431Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3d1a1ccae8348fc49704", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:00.431Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:00.431Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1500, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/talos_script.py", + "--cfg", + "mozharness/configs/talos/mac_config.py", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos speedometer ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-talos-speedometer-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-talos-speedometer-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "sp" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CevR6KZnRBGT2ToB-cKjww", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.076Z", + "expires": "2019-04-30T09:55:19.076Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06bd8b0dc230af836", + "takenUntil": "2018-04-30T12:06:07.812Z", + "scheduled": "2018-04-30T11:45:32.737Z", + "started": "2018-04-30T11:46:07.890Z", + "resolved": "2018-04-30T11:57:02.282Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.076Z", + "deadline": "2018-05-01T09:55:19.076Z", + "expires": "2019-04-30T09:55:19.076Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:19.076Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:19.076Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CiccvI8WQ4OTfiSFC1SeCA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.276Z", + "expires": "2019-04-30T09:55:03.276Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e875100e79bd8727", + "takenUntil": "2018-04-30T10:57:26.832Z", + "scheduled": "2018-04-30T10:36:28.806Z", + "started": "2018-04-30T10:37:27.165Z", + "resolved": "2018-04-30T10:47:38.042Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.5e89e4fe72accb0c0171" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.276Z", + "deadline": "2018-05-01T09:55:03.276Z", + "expires": "2019-04-30T09:55:03.276Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5e89e4fe72accb0c0171", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:03.276Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:03.276Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:03.276Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/opt-mochitest-gpu-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-qr/opt-mochitest-gpu-e10s", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gpu" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CjZ-SEYCQT-0lu1ExK0-AQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.955Z", + "expires": "2019-04-30T09:54:44.955Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0c67e11e0b1cec320", + "takenUntil": "2018-04-30T10:31:42.847Z", + "scheduled": "2018-04-30T09:56:18.364Z", + "started": "2018-04-30T09:56:19.214Z", + "resolved": "2018-04-30T10:25:18.093Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "CwLXyQZgT7CR2UoBvh2fig", + "D06NaEbzTcO-TgeZNpSGQQ", + "VdOxLofoQZW8Pyysd2THqQ", + "WFQrgPn2RO-jEjfk1-378g", + "aD8ER2TJR-miwww4rU1lKA", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.linux64-base-toolchains-debug", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.955Z", + "deadline": "2018-05-01T09:54:44.955Z", + "expires": "2019-04-30T09:54:44.955Z", + "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-mozilla-central-build-linux64-base-toolchains-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-central-build-linux64-base-toolchains-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:44.955Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180430095344", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VdOxLofoQZW8Pyysd2THqQ public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@WFQrgPn2RO-jEjfk1-378g public/build/sccache2.tar.xz@CwLXyQZgT7CR2UoBvh2fig", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "Linux64 base toolchains Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-linux64-base-toolchains/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-base-toolchains/debug" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bb", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "ClhvcIjJRrqfxglSZnoInw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.883Z", + "expires": "2019-04-30T09:55:10.883Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f0bcf598dcb6e789", + "takenUntil": "2018-04-30T11:13:16.737Z", + "scheduled": "2018-04-30T10:37:24.527Z", + "started": "2018-04-30T10:37:53.476Z", + "resolved": "2018-04-30T10:59:20.822Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ce5262f41f37372b9584" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.883Z", + "deadline": "2018-05-01T09:55:10.883Z", + "expires": "2019-04-30T09:55:10.883Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ce5262f41f37372b9584", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.883Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.883Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.883Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-8" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 2, + "symbol": "Mn8", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Cm8bD0BkRDK-1wXVnSgCIg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:26.860Z", + "expires": "2019-04-30T09:55:26.860Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-026d0feb2a04fbcb7", + "takenUntil": "2018-04-30T11:22:59.365Z", + "scheduled": "2018-04-30T11:02:40.505Z", + "started": "2018-04-30T11:02:59.448Z", + "resolved": "2018-04-30T11:14:20.066Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.af3433061fccef0b5722" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:26.860Z", + "deadline": "2018-05-01T09:55:26.860Z", + "expires": "2019-04-30T09:55:26.860Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.af3433061fccef0b5722", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:26.860Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:26.860Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:26.860Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-mochitest-chrome-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-pgo/opt-mochitest-chrome-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CmlRN2dDTOG47ZH4zFfxyw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.767Z", + "expires": "2019-04-30T09:54:55.767Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-004534d9698a56c8e", + "takenUntil": "2018-04-30T12:09:30.801Z", + "scheduled": "2018-04-30T11:45:32.679Z", + "started": "2018-04-30T11:49:30.879Z", + "resolved": "2018-04-30T11:52:32.743Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.767Z", + "deadline": "2018-05-01T09:54:55.767Z", + "expires": "2019-04-30T09:54:55.767Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:55.767Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:55.767Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-cppunit" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 1, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "pgo": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Cobu4KtgSnah__naHjcU4A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.191Z", + "expires": "2019-04-30T09:55:12.191Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01dbaf0c8e9eeec5e", + "takenUntil": "2018-04-30T11:14:21.607Z", + "scheduled": "2018-04-30T10:38:29.347Z", + "started": "2018-04-30T10:38:58.283Z", + "resolved": "2018-04-30T11:01:03.175Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.77e1dbb379d785e4f226" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.191Z", + "deadline": "2018-05-01T09:55:12.191Z", + "expires": "2019-04-30T09:55:12.191Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.77e1dbb379d785e4f226", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:12.191Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:12.191Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:12.191Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/opt-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "ConZhrVWSl-O_BRwWp28pg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.904Z", + "expires": "2019-04-30T09:55:04.904Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-053c29e953f050d5b", + "takenUntil": "2018-04-30T11:44:31.999Z", + "scheduled": "2018-04-30T11:02:59.225Z", + "started": "2018-04-30T11:07:31.345Z", + "resolved": "2018-04-30T11:28:31.166Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.904Z", + "deadline": "2018-05-01T09:55:04.904Z", + "expires": "2019-04-30T09:55:04.904Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:04.904Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:04.904Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Cop_XrFcQj2MdaOUv0_Ntw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:30.079Z", + "expires": "2019-04-30T09:55:30.079Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0870e38acd03abd16", + "takenUntil": "2018-04-30T11:07:05.715Z", + "scheduled": "2018-04-30T10:30:05.168Z", + "started": "2018-04-30T10:31:41.925Z", + "resolved": "2018-04-30T10:53:08.824Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.064fce3e1761c388fd6c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:30.079Z", + "deadline": "2018-05-01T09:55:30.079Z", + "expires": "2019-04-30T09:55:30.079Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.064fce3e1761c388fd6c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:30.079Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:30.079Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:30.079Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-e10s-13" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-e10s-13", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 13, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "13" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Cs0FBgCOTduwyPerPau_nQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:14.849Z", + "expires": "2019-04-30T09:55:14.849Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0419d44c7ba4f7051", + "takenUntil": "2018-04-30T12:13:22.510Z", + "scheduled": "2018-04-30T11:42:56.929Z", + "started": "2018-04-30T11:53:22.592Z", + "resolved": "2018-04-30T12:03:31.847Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:14.849Z", + "deadline": "2018-05-01T09:55:14.849Z", + "expires": "2019-04-30T09:55:14.849Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:14.849Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:14.849Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CsTTPIGVTp-WPcB4w9mJGw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.317Z", + "expires": "2019-04-30T09:55:01.317Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-073c86d1c977e1dd4", + "takenUntil": "2018-04-30T11:59:14.111Z", + "scheduled": "2018-04-30T10:37:24.447Z", + "started": "2018-04-30T10:37:40.128Z", + "resolved": "2018-04-30T11:53:04.742Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c075a22d34e231a3a4c6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.317Z", + "deadline": "2018-05-01T09:55:01.317Z", + "expires": "2019-04-30T09:55:01.317Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c075a22d34e231a3a4c6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:01.317Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:01.317Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:01.317Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=18", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-18" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-18", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 18, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "18" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Csj0qkzdRSm57TrEbZ7Wzg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.620Z", + "expires": "2019-04-30T09:55:09.620Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d76719a81f51963b", + "takenUntil": "2018-04-30T12:02:57.342Z", + "scheduled": "2018-04-30T11:42:56.696Z", + "started": "2018-04-30T11:42:57.420Z", + "resolved": "2018-04-30T11:50:14.325Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.620Z", + "deadline": "2018-05-01T09:55:09.620Z", + "expires": "2019-04-30T09:55:09.620Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:09.620Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:09.620Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-mochitest-webgl-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32-pgo/opt-mochitest-webgl-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Cso3kqMxQfaG0IpDS5hzuQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:17.416Z", + "expires": "2019-04-30T09:55:17.416Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0145b49a88e0a6e96", + "takenUntil": "2018-04-30T12:05:22.264Z", + "scheduled": "2018-04-30T10:27:41.687Z", + "started": "2018-04-30T10:28:24.316Z", + "resolved": "2018-04-30T11:55:32.086Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.0a40d28c54d76360319b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:17.416Z", + "deadline": "2018-05-01T09:55:17.416Z", + "expires": "2019-04-30T09:55:17.416Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0a40d28c54d76360319b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:17.416Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:17.416Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:17.416Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-web-platform-tests-e10s-8" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt8" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CtJ1S294SASA8qFqtgo3Jg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:59.353Z", + "expires": "2019-04-30T09:54:59.353Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-065", + "takenUntil": "2018-04-30T12:05:33.838Z", + "scheduled": "2018-04-30T11:45:32.889Z", + "started": "2018-04-30T11:45:33.916Z", + "resolved": "2018-04-30T11:55:10.417Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Utm5ASVQQYuxx425g3XZ1A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:59.353Z", + "deadline": "2018-05-01T09:54:59.353Z", + "expires": "2019-04-30T09:54:59.353Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:59.353Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:59.353Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=chromez-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=chromez-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Utm5ASVQQYuxx425g3XZ1A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos chrome ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-pgo/opt-talos-chrome-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-chrome-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "c" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CtM44pymQVWFzFn4X0gAcg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.443Z", + "expires": "2019-04-30T09:54:55.443Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0cb9c52f2d81257d2", + "takenUntil": "2018-04-30T11:05:16.603Z", + "scheduled": "2018-04-30T10:27:41.837Z", + "started": "2018-04-30T10:29:52.860Z", + "resolved": "2018-04-30T10:51:18.054Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.012a51057c34dd6b70b7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.443Z", + "deadline": "2018-05-01T09:54:55.443Z", + "expires": "2019-04-30T09:54:55.443Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.012a51057c34dd6b70b7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:55.443Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:55.443Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:55.443Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-xpcshell-12" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-12" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X12" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Cu-t9NJUTI-W09Vy3pUEYQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:19.462Z", + "expires": "2019-04-30T09:55:19.462Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ead46e827fd67c79", + "takenUntil": "2018-04-30T11:12:39.473Z", + "scheduled": "2018-04-30T10:34:56.616Z", + "started": "2018-04-30T10:37:16.224Z", + "resolved": "2018-04-30T10:55:38.632Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ee202ff7753fcac08fda" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:19.462Z", + "deadline": "2018-05-01T09:55:19.462Z", + "expires": "2019-04-30T09:55:19.462Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ee202ff7753fcac08fda", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:19.462Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:19.462Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:19.462Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=10" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-mochitest-e10s-10" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-e10s-10", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 10, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "10" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CvrRjlDWQhmqhhlb649Mbg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:22.171Z", + "expires": "2019-04-30T09:55:22.171Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e306be84344ae447", + "takenUntil": "2018-04-30T11:05:42.116Z", + "scheduled": "2018-04-30T10:30:04.888Z", + "started": "2018-04-30T10:30:18.754Z", + "resolved": "2018-04-30T10:50:36.779Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.52d4c3219e4c45a4b325" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:22.171Z", + "deadline": "2018-05-01T09:55:22.171Z", + "expires": "2019-04-30T09:55:22.171Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.52d4c3219e4c45a4b325", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:22.171Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:22.171Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:22.171Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-11" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-11", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h11" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "CzF4hmLhT3GVPzuNGKP6VA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:12.116Z", + "expires": "2019-04-30T09:55:12.116Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-396", + "takenUntil": "2018-04-30T11:47:57.230Z", + "scheduled": "2018-04-30T10:36:55.031Z", + "started": "2018-04-30T10:36:55.690Z", + "resolved": "2018-04-30T11:31:43.140Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.1c5580cde1cb5ae93797" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:12.116Z", + "deadline": "2018-05-01T09:55:12.116Z", + "expires": "2019-04-30T09:55:12.116Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1c5580cde1cb5ae93797", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:12.116Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:12.116Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=5", + "--this-chunk=4" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-web-platform-tests-e10s-4" + }, + "tags": { + "os": "macosx", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D0OkScZuQeytQOMCWB_j8Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:06.911Z", + "expires": "2019-04-30T09:55:06.911Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e8f26d84f9280a07", + "takenUntil": "2018-04-30T11:51:46.193Z", + "scheduled": "2018-04-30T11:15:44.945Z", + "started": "2018-04-30T11:31:46.284Z", + "resolved": "2018-04-30T11:45:26.897Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:06.911Z", + "deadline": "2018-05-01T09:55:06.911Z", + "expires": "2019-04-30T09:55:06.911Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:06.911Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:06.911Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_vm_config.py --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000 --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-talos-g5-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Talos performance tests with e10s", + "tier": 3, + "symbol": "g5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "D1M6Uh0ORuiEfq1PX_5CHg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:57.612Z", + "expires": "2019-04-30T09:54:57.612Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-087423b2833be5c86", + "takenUntil": "2018-04-30T11:46:45.109Z", + "scheduled": "2018-04-30T10:38:59.836Z", + "started": "2018-04-30T10:40:34.452Z", + "resolved": "2018-04-30T11:31:24.033Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Aan3dsW3T7CXNeZvRE-LKQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.7d11a0744c351c6f5af1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:57.612Z", + "deadline": "2018-05-01T09:54:57.612Z", + "expires": "2019-04-30T09:54:57.612Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7d11a0744c351c6f5af1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:57.612Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:57.612Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:57.612Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=9", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-9" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-9", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 9, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R9" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D3az375QRciZnWHzesuFDA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.712Z", + "expires": "2019-04-30T09:55:29.712Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0e8d62b5c87fcca43", + "takenUntil": "2018-04-30T11:21:46.395Z", + "scheduled": "2018-04-30T10:30:05.258Z", + "started": "2018-04-30T10:30:58.877Z", + "resolved": "2018-04-30T11:10:43.974Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.e8417112a1b7ff3f7335" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.712Z", + "deadline": "2018-05-01T09:55:29.712Z", + "expires": "2019-04-30T09:55:29.712Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e8417112a1b7ff3f7335", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.712Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.712Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.712Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=10", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-xpcshell-7" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/debug-xpcshell-7" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D5ZSEIxCSDigWR3NxYZHRQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:56.018Z", + "expires": "2019-04-30T09:54:56.018Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03a008a3cd062bb94", + "takenUntil": "2018-04-30T12:14:01.795Z", + "scheduled": "2018-04-30T11:02:59.017Z", + "started": "2018-04-30T11:02:59.654Z", + "resolved": "2018-04-30T11:57:59.505Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:56.018Z", + "deadline": "2018-05-01T09:54:56.018Z", + "expires": "2019-04-30T09:54:56.018Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:56.018Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:56.018Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=11" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-11" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-11" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt11" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D5_W_NbfRjWYIUb1boc1Wg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:49.860Z", + "expires": "2019-04-30T09:54:49.860Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-linux64-ms-313", + "takenUntil": "2018-04-30T10:56:29.935Z", + "scheduled": "2018-04-30T10:36:28.821Z", + "started": "2018-04-30T10:36:30.027Z", + "resolved": "2018-04-30T10:45:05.715Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.5953dc9205ce3c8488a8" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:49.860Z", + "deadline": "2018-05-01T09:54:49.860Z", + "expires": "2019-04-30T09:54:49.860Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-30T09:54:49.860Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-30T09:54:49.860Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-30T09:54:49.860Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1500, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--suite=other-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos other ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-talos-other-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-other-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "o" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D660eNbhRfCqgi1l1USFoA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.411Z", + "expires": "2019-04-30T09:55:01.411Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0bc42af0645bc1444", + "takenUntil": "2018-04-30T11:52:23.699Z", + "scheduled": "2018-04-30T11:13:46.382Z", + "started": "2018-04-30T11:32:23.785Z", + "resolved": "2018-04-30T11:42:28.602Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.411Z", + "deadline": "2018-05-01T09:55:01.411Z", + "expires": "2019-04-30T09:55:01.411Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.411Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.411Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-mochitest-media-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/opt-mochitest-media-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D7lqHF6mTxaGyDi_nk-X0w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.470Z", + "expires": "2019-04-30T09:55:15.470Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0bec31bc1755d05bf", + "takenUntil": "2018-04-30T11:46:52.562Z", + "scheduled": "2018-04-30T11:13:46.253Z", + "started": "2018-04-30T11:26:52.645Z", + "resolved": "2018-04-30T11:40:47.303Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.470Z", + "deadline": "2018-05-01T09:55:15.470Z", + "expires": "2019-04-30T09:55:15.470Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:15.470Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:15.470Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-web-platform-tests-e10s-4" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D7u5hQFmSwy442dXnNZrrg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:55.864Z", + "expires": "2019-04-30T09:54:55.864Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0070", + "takenUntil": "2018-04-30T11:11:48.154Z", + "scheduled": "2018-04-30T10:34:47.026Z", + "started": "2018-04-30T10:34:47.730Z", + "resolved": "2018-04-30T10:58:35.617Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "KtBhdwcgTYOMuvxna77mGw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.97d6e80cd7b57b5e6321" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:55.864Z", + "deadline": "2018-05-01T09:54:55.864Z", + "expires": "2019-04-30T09:54:55.864Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.97d6e80cd7b57b5e6321", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:55.864Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:55.864Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "KtBhdwcgTYOMuvxna77mGw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/debug-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-macosx64/debug-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D8eW-ELqSIWTdgGJ_ok6ng", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:21.038Z", + "expires": "2019-04-30T09:55:21.038Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-055247cde6c9748ee", + "takenUntil": "2018-04-30T11:20:59.378Z", + "scheduled": "2018-04-30T10:30:05.096Z", + "started": "2018-04-30T10:30:12.913Z", + "resolved": "2018-04-30T11:11:24.447Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.f75599fb4fa35e1f9354" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:21.038Z", + "deadline": "2018-05-01T09:55:21.038Z", + "expires": "2019-04-30T09:55:21.038Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f75599fb4fa35e1f9354", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:21.038Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:21.038Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:21.038Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-web-platform-tests-wdspec-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-wdspec-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "Wd" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DCf_OF1AQm-FAtwxdIJYsw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:09.178Z", + "expires": "2019-04-30T09:55:09.178Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03d795ef5cdfc0a3d", + "takenUntil": "2018-04-30T11:12:51.666Z", + "scheduled": "2018-04-30T10:36:28.819Z", + "started": "2018-04-30T10:37:28.085Z", + "resolved": "2018-04-30T10:54:04.013Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.59cc1cfb6888fa66ded3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:09.178Z", + "deadline": "2018-05-01T09:55:09.178Z", + "expires": "2019-04-30T09:55:09.178Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.59cc1cfb6888fa66ded3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:09.178Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:09.178Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:09.178Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-mochitest-devtools-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/opt-mochitest-devtools-chrome-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DDCAcP6fQGC_mM65arxrhQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:30.407Z", + "expires": "2019-04-30T09:55:30.407Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b37ecd2cd2c89cb5", + "takenUntil": "2018-04-30T12:24:51.159Z", + "scheduled": "2018-04-30T11:23:07.794Z", + "started": "2018-04-30T11:47:50.224Z", + "resolved": "2018-04-30T12:08:08.983Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GTG52Q5aT8yBK-HeM5jpMg", + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:30.407Z", + "deadline": "2018-05-01T09:55:30.407Z", + "expires": "2019-04-30T09:55:30.407Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:30.407Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:30.407Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/GTG52Q5aT8yBK-HeM5jpMg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell --code-coverage --total-chunk=8 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-xpcshell-3" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-xpcshell-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DER81MnUQKuL2Ok_0sIQmA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:58.572Z", + "expires": "2019-04-30T09:54:58.572Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c3cec8f5f04a0f7c", + "takenUntil": "2018-04-30T11:13:22.925Z", + "scheduled": "2018-04-30T10:37:24.599Z", + "started": "2018-04-30T10:37:59.744Z", + "resolved": "2018-04-30T10:56:51.842Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.cd02e224c2cce15fc4bd" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:58.572Z", + "deadline": "2018-05-01T09:54:58.572Z", + "expires": "2019-04-30T09:54:58.572Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.cd02e224c2cce15fc4bd", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:58.572Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:58.572Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:58.572Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-9" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 10 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 2, + "symbol": "Mn9", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DEVDrLNfT4SItP5B24VPVw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:15.850Z", + "expires": "2019-04-30T09:55:15.850Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-218", + "takenUntil": "2018-04-30T10:56:55.437Z", + "scheduled": "2018-04-30T10:36:54.925Z", + "started": "2018-04-30T10:36:55.517Z", + "resolved": "2018-04-30T10:47:34.817Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "BQUskIWCSP6rfyzBSoVxlg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.20dbeb6b2ddf9a530af7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:15.850Z", + "deadline": "2018-05-01T09:55:15.850Z", + "expires": "2019-04-30T09:55:15.850Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.20dbeb6b2ddf9a530af7", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:15.850Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:15.850Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/talos_script.py", + "--cfg", + "mozharness/configs/talos/mac_config.py", + "--suite=chromez-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--suite=chromez-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BQUskIWCSP6rfyzBSoVxlg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos chrome ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-macosx64/opt-talos-chrome-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-talos-chrome-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "c" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DErOhs-ATzijiYKHLnvORg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:49.881Z", + "expires": "2019-04-30T09:54:49.881Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-058bea048bf74e5c7", + "takenUntil": "2018-04-30T11:09:40.514Z", + "scheduled": "2018-04-30T10:49:04.539Z", + "started": "2018-04-30T10:49:40.599Z", + "resolved": "2018-04-30T11:03:08.173Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.54d34fbb07dabb8c27c6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:49.881Z", + "deadline": "2018-05-01T09:54:49.881Z", + "expires": "2019-04-30T09:54:49.881Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.54d34fbb07dabb8c27c6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:49.881Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:49.881Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:49.881Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--suite=tp6-stylo-threads-e10s", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--code-coverage", + "--add-option", + "--cycles,1", + "--add-option", + "--tppagecycles,1", + "--add-option", + "--no-upload-results", + "--add-option", + "--tptimeout,15000", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "talos/linux64_config_taskcluster.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "talos_script.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos Stylo sequential tp6 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-talos-tp6-stylo-threads-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-talos-tp6-stylo-threads-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "Tss-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Talos performance tests with e10s, Stylo sequential", + "tier": 3, + "symbol": "tp6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DH5iUEBAS0OlXsCwl7ev4w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:01.292Z", + "expires": "2019-04-30T09:55:01.292Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-298", + "takenUntil": "2018-04-30T12:02:58.172Z", + "scheduled": "2018-04-30T11:42:57.090Z", + "started": "2018-04-30T11:42:58.262Z", + "resolved": "2018-04-30T11:51:33.540Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "GGchMyWWSMW0surKh5kr3Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:01.292Z", + "deadline": "2018-05-01T09:55:01.292Z", + "expires": "2019-04-30T09:55:01.292Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:01.292Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:01.292Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tp6-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tp6-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "GGchMyWWSMW0surKh5kr3Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos tp6 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32-pgo/opt-talos-tp6-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-tp6-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tp6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DIKB0OdMRQyWrX9j3PBT_w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.629Z", + "expires": "2019-04-30T09:55:04.629Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0bf502295c9136c31", + "takenUntil": "2018-04-30T11:28:08.657Z", + "scheduled": "2018-04-30T10:36:29.309Z", + "started": "2018-04-30T10:37:21.913Z", + "resolved": "2018-04-30T11:08:12.579Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.e4519c0465c8d72e5893" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.629Z", + "deadline": "2018-05-01T09:55:04.629Z", + "expires": "2019-04-30T09:55:04.629Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e4519c0465c8d72e5893", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:04.629Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:04.629Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:04.629Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-web-platform-tests-e10s-3" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DJi0OLaQRSqJi_fSlK_v1w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:07.810Z", + "expires": "2019-04-30T09:55:07.810Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06537d719c1ad8ae2", + "takenUntil": "2018-04-30T11:47:02.984Z", + "scheduled": "2018-04-30T10:38:59.957Z", + "started": "2018-04-30T10:40:52.110Z", + "resolved": "2018-04-30T11:30:49.126Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Aan3dsW3T7CXNeZvRE-LKQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ddcfd68efdc62299a656" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:07.810Z", + "deadline": "2018-05-01T09:55:07.810Z", + "expires": "2019-04-30T09:55:07.810Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ddcfd68efdc62299a656", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:07.810Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:07.810Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:07.810Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-12" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-12", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 12, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R12" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DJnYUqJxR--Pc978aaZRZQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:03.185Z", + "expires": "2019-04-30T09:55:03.185Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0dd434783797bd952", + "takenUntil": "2018-04-30T11:05:15.619Z", + "scheduled": "2018-04-30T10:27:41.779Z", + "started": "2018-04-30T10:29:52.072Z", + "resolved": "2018-04-30T10:56:46.712Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "DrYLQaCoSBW3UAsBNjKcQQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.04a3a87ec6051e1d294f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:03.185Z", + "deadline": "2018-05-01T09:55:03.185Z", + "expires": "2019-04-30T09:55:03.185Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.04a3a87ec6051e1d294f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:03.185Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:03.185Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:03.185Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/debug-mochitest-e10s-14" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux32/debug-mochitest-e10s-14", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 14, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "14" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DKbfAw1uRNeB7pWoFCNwYQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.642Z", + "expires": "2019-04-30T09:55:23.642Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ffc50d946ddc0aad", + "takenUntil": "2018-04-30T11:22:49.116Z", + "scheduled": "2018-04-30T11:02:40.110Z", + "started": "2018-04-30T11:02:49.202Z", + "resolved": "2018-04-30T11:10:30.413Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.ee7f94259a823fbac371" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.642Z", + "deadline": "2018-05-01T09:55:23.642Z", + "expires": "2019-04-30T09:55:23.642Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ee7f94259a823fbac371", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:23.642Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:23.642Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:23.642Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-xpcshell-3" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-xpcshell-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DKjfmP0FQx-cAtuPDQIPaA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.944Z", + "expires": "2019-04-30T09:54:44.944Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b0d3ce77d4277909", + "takenUntil": "2018-04-30T11:24:21.886Z", + "scheduled": "2018-04-30T09:56:18.383Z", + "started": "2018-04-30T09:56:18.896Z", + "resolved": "2018-04-30T11:04:23.277Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "A7tJzqugQTiQTixLfy6JaA", + "Ct4QXUZVR9WyNqJ93Hi7oA", + "atUiJvNQQD2DysVIjneLGA", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.win64-st-an-debug", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.win64-st-an-debug", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.944Z", + "deadline": "2018-05-01T09:54:44.944Z", + "expires": "2019-04-30T09:54:44.944Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180430095344", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@A7tJzqugQTiQTixLfy6JaA public/build/rustc.tar.bz2@Ct4QXUZVR9WyNqJ93Hi7oA public/build/sccache2.tar.bz2@atUiJvNQQD2DysVIjneLGA", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-30T09:54:44.944Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 63519bfd42ee379f597c0357af2e712ec3cd9f50 https://hg.mozilla.org/mozilla-central .\\build\\src", + ":: TinderboxPrint:63519bfd42ee379f597c0357af2e712ec3cd9f50\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 mozilla-central --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/static-analysis", + "description": "Win64 Static Analysis Debug (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "static-analysis-win64-st-an/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/debug" + }, + "extra": { + "index": { + "rank": 1525082024 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + }, + { + "status": { + "taskId": "DL51fMmNTlKQjjXf5S8Viw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.999Z", + "expires": "2019-04-30T09:55:29.999Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0e17c92689c002759", + "takenUntil": "2018-04-30T10:50:45.450Z", + "scheduled": "2018-04-30T10:30:05.200Z", + "started": "2018-04-30T10:30:45.528Z", + "resolved": "2018-04-30T10:44:57.741Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.b78f28f8aa826a0e6b70" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.999Z", + "deadline": "2018-05-01T09:55:29.999Z", + "expires": "2019-04-30T09:55:29.999Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b78f28f8aa826a0e6b70", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:29.999Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:29.999Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:29.999Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-mochitest-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-qr/debug-mochitest-e10s-6", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DLQZqUXkQRagmeyKNJYxhg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.240Z", + "expires": "2019-04-30T09:55:04.240Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-044c938c04e723346", + "takenUntil": "2018-04-30T11:13:34.551Z", + "scheduled": "2018-04-30T10:36:29.310Z", + "started": "2018-04-30T10:38:11.237Z", + "resolved": "2018-04-30T10:59:50.324Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "N1YNYiNfSFy7dIPGxcPj6w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.2cd8a1f9518d876e8cf5" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.240Z", + "deadline": "2018-05-01T09:55:04.240Z", + "expires": "2019-04-30T09:55:04.240Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2cd8a1f9518d876e8cf5", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:04.240Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:04.240Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:04.240Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/opt-mochitest-browser-chrome-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/opt-mochitest-browser-chrome-e10s-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DNU4nVl4ThmzPrnnz2wPHQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.475Z", + "expires": "2019-04-30T09:55:23.475Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ec35e692c1e42b18", + "takenUntil": "2018-04-30T11:40:26.438Z", + "scheduled": "2018-04-30T11:02:33.203Z", + "started": "2018-04-30T11:03:24.842Z", + "resolved": "2018-04-30T11:28:35.994Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.475Z", + "deadline": "2018-05-01T09:55:23.475Z", + "expires": "2019-04-30T09:55:23.475Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:23.475Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:23.475Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt6" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DNx7UvuNTeyO2m13B9MWyQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:46.475Z", + "expires": "2019-04-30T09:54:46.475Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-081f4f0d9009353b2", + "takenUntil": "2018-04-30T12:10:40.205Z", + "scheduled": "2018-04-30T10:49:04.135Z", + "started": "2018-04-30T10:49:07.251Z", + "resolved": "2018-04-30T12:02:33.815Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SSJi3bV7TAKa_5mllOAG1w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.223bc88bde4b2c0c9d86" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:46.475Z", + "deadline": "2018-05-01T09:54:46.475Z", + "expires": "2019-04-30T09:54:46.475Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.223bc88bde4b2c0c9d86", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:46.475Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:46.475Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:46.475Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-ccov/opt-web-platform-tests-e10s-7" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-web-platform-tests-e10s-7" + }, + "extra": { + "chunks": { + "current": 7, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt7" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DPaeSR9GS7isNfgSuDwc3A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:24.215Z", + "expires": "2019-04-30T09:55:24.215Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0454d958eb0b07b85", + "takenUntil": "2018-04-30T11:38:16.787Z", + "scheduled": "2018-04-30T11:02:40.173Z", + "started": "2018-04-30T11:02:53.228Z", + "resolved": "2018-04-30T11:23:11.321Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.c8548f37d880a54a9b19" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:24.215Z", + "deadline": "2018-05-01T09:55:24.215Z", + "expires": "2019-04-30T09:55:24.215Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c8548f37d880a54a9b19", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:24.215Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:24.215Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:24.215Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-web-platform-tests-e10s-11" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-e10s-11" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt11" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DPcKxQphRQqcvx0NM5cvow", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:25.436Z", + "expires": "2019-04-30T09:55:25.436Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-04685f683199501dd", + "takenUntil": "2018-04-30T12:02:30.417Z", + "scheduled": "2018-04-30T11:02:33.192Z", + "started": "2018-04-30T11:08:26.282Z", + "resolved": "2018-04-30T11:43:29.956Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:25.436Z", + "deadline": "2018-05-01T09:55:25.436Z", + "expires": "2019-04-30T09:55:25.436Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:25.436Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:25.436Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-no-accel --e10s --total-chunk=4 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-reftest-no-accel-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-reftest-no-accel-e10s-2", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DSCMCqzPR3aGOu5mTUd_uQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:27.930Z", + "expires": "2019-04-30T09:55:27.930Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f10186996a1b0de6", + "takenUntil": "2018-04-30T10:50:35.947Z", + "scheduled": "2018-04-30T10:30:05.294Z", + "started": "2018-04-30T10:30:36.039Z", + "resolved": "2018-04-30T10:45:33.664Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.705a68778f0ebd5c41ac" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:27.930Z", + "deadline": "2018-05-01T09:55:27.930Z", + "expires": "2019-04-30T09:55:27.930Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.705a68778f0ebd5c41ac", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:27.930Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:27.930Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:27.930Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "a11y", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-a11y", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DT03dNgZQGarcEGbwyqOCQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:59.583Z", + "expires": "2019-04-30T09:54:59.583Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0bd6ce24cac61f6a8", + "takenUntil": "2018-04-30T11:47:43.768Z", + "scheduled": "2018-04-30T11:13:17.546Z", + "started": "2018-04-30T11:27:43.853Z", + "resolved": "2018-04-30T11:41:34.358Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:59.583Z", + "deadline": "2018-05-01T09:54:59.583Z", + "expires": "2019-04-30T09:54:59.583Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:59.583Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:59.583Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-mochitest-plain-headless-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/opt-mochitest-plain-headless-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h5" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DTDvpLT1SGO_1Q1TH1OHCg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:08.662Z", + "expires": "2019-04-30T09:55:08.662Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ba2ae8d33ba51898", + "takenUntil": "2018-04-30T11:44:29.257Z", + "scheduled": "2018-04-30T11:13:17.324Z", + "started": "2018-04-30T11:24:29.334Z", + "resolved": "2018-04-30T11:28:35.422Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "cWt8R5ZzTLqRoNOXMjbk8w" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:08.662Z", + "deadline": "2018-05-01T09:55:08.662Z", + "expires": "2019-04-30T09:55:08.662Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:08.662Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:08.662Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.test_packages.json --download-symbols ondemand --cppunittest-suite=cppunittest" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "cWt8R5ZzTLqRoNOXMjbk8w", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/opt-cppunit" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 1, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DTIbfaISRP6z3UP4O5eZuQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:00.405Z", + "expires": "2019-04-30T09:55:00.405Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-09fe10a11d11486c0", + "takenUntil": "2018-04-30T11:44:27.752Z", + "scheduled": "2018-04-30T11:02:59.214Z", + "started": "2018-04-30T11:07:26.425Z", + "resolved": "2018-04-30T11:28:42.694Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:00.405Z", + "deadline": "2018-05-01T09:55:00.405Z", + "expires": "2019-04-30T09:55:00.405Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:00.405Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:00.405Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-mochitest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows10-64/debug-mochitest-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DTkeRe5NRZmzwKYUZHTOfg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:05.915Z", + "expires": "2019-04-30T09:55:05.915Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-069ca954f7bdb9552", + "takenUntil": "2018-04-30T11:22:59.505Z", + "scheduled": "2018-04-30T11:02:59.014Z", + "started": "2018-04-30T11:02:59.584Z", + "resolved": "2018-04-30T11:14:29.816Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ev4OVc4eSMuOhGFIcto4EA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:05.915Z", + "deadline": "2018-05-01T09:55:05.915Z", + "expires": "2019-04-30T09:55:05.915Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:05.915Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:05.915Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=reftest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Ev4OVc4eSMuOhGFIcto4EA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64/debug-web-platform-tests-reftests-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-reftests-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DUhpgh-OS5e1M_iP6orQfw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:29.360Z", + "expires": "2019-04-30T09:55:29.360Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0641ef6ffd10fbc8e", + "takenUntil": "2018-04-30T12:10:55.394Z", + "scheduled": "2018-04-30T11:02:33.483Z", + "started": "2018-04-30T11:16:52.180Z", + "resolved": "2018-04-30T11:52:36.058Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "bTP8HVfTSQuepueTNLh_Qw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:29.360Z", + "deadline": "2018-05-01T09:55:29.360Z", + "expires": "2019-04-30T09:55:29.360Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:55:29.360Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:55:29.360Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=4 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "bTP8HVfTSQuepueTNLh_Qw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/debug-reftest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-windows7-32/debug-reftest-e10s-4", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R4" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DUzkpqGaQQ2ntO4BlvOCSQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:58.971Z", + "expires": "2019-04-30T09:54:58.971Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-02c5560b1c20c0379", + "takenUntil": "2018-04-30T11:12:44.819Z", + "scheduled": "2018-04-30T10:34:56.694Z", + "started": "2018-04-30T10:37:21.387Z", + "resolved": "2018-04-30T10:53:47.189Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.f29fe0c3d78202179933" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:58.971Z", + "deadline": "2018-05-01T09:54:58.971Z", + "expires": "2019-04-30T09:54:58.971Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f29fe0c3d78202179933", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:58.971Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:58.971Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:58.971Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-mochitest-media-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-media-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda3" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DVl8hBEsTTe3W1N_WkbgtQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:04.453Z", + "expires": "2019-04-30T09:55:04.453Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0a531d4acaf1da0ab", + "takenUntil": "2018-04-30T11:22:03.454Z", + "scheduled": "2018-04-30T10:31:11.445Z", + "started": "2018-04-30T10:31:16.712Z", + "resolved": "2018-04-30T11:04:28.888Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "VSIQ5dcvSzOIQaZ3IA835w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.be729bd3988fba96a3a9" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:04.453Z", + "deadline": "2018-05-01T09:55:04.453Z", + "expires": "2019-04-30T09:55:04.453Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.be729bd3988fba96a3a9", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:04.453Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:04.453Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:04.453Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.2-x86/opt-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.2-x86/opt-mochitest-chrome-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-2-x86" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DWFwdbw2R4C8uW1IIuLqqA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:10.167Z", + "expires": "2019-04-30T09:55:10.167Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-00090782664e61251", + "takenUntil": "2018-04-30T11:44:21.649Z", + "scheduled": "2018-04-30T10:37:24.667Z", + "started": "2018-04-30T10:38:10.659Z", + "resolved": "2018-04-30T11:37:43.427Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "C4gR1cv8SpOBakyOu6LKCw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.fb5839a251bb49ab3f3a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:10.167Z", + "deadline": "2018-05-01T09:55:10.167Z", + "expires": "2019-04-30T09:55:10.167Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fb5839a251bb49ab3f3a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:10.167Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:10.167Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:10.167Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=30", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-30" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-30", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 30, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R30" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DXcRxqljRBmOjOCMipnhgA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:50.299Z", + "expires": "2019-04-30T09:54:50.299Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-02a5df595ce164474", + "takenUntil": "2018-04-30T11:51:46.933Z", + "scheduled": "2018-04-30T11:13:46.370Z", + "started": "2018-04-30T11:31:47.015Z", + "resolved": "2018-04-30T11:35:31.685Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Lc44F9MwQp2tkaeg2yYP2Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:50.299Z", + "deadline": "2018-05-01T09:54:50.299Z", + "expires": "2019-04-30T09:54:50.299Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:50.299Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:50.299Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --tag local --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Lc44F9MwQp2tkaeg2yYP2Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Firefox-ui-tests functional run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows7-32/opt-firefox-ui-functional-local-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-firefox-ui-functional-local-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "functional local", + "name": "firefox-ui" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "Fxfn-l-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Firefox functional tests (local) with e10s", + "tier": 1, + "symbol": "en-US" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "DYdVuX2qTWe3uQLxu3Bk6g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:59.511Z", + "expires": "2019-04-30T09:54:59.511Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-2", + "workerId": "i-0694a90d18dd1e525", + "takenUntil": "2018-04-30T12:08:38.063Z", + "scheduled": "2018-04-30T11:15:44.907Z", + "started": "2018-04-30T11:31:36.899Z", + "resolved": "2018-04-30T11:55:41.008Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "NOOFo3BxQ_-l7MyFmfqfYA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:59.511Z", + "deadline": "2018-05-01T09:54:59.511Z", + "expires": "2019-04-30T09:54:59.511Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-30T09:54:59.511Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-30T09:54:59.511Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_vm_config.py --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000 --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.test_packages.json --download-symbols true --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --code-coverage --add-option --cycles,1 --add-option --tppagecycles,1 --add-option --no-upload-results --add-option --tptimeout,15000" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-windows10-64-ccov/debug-talos-damp-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Talos performance tests with e10s", + "tier": 3, + "symbol": "damp" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DZElXfMSRTSEGllW704KFQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:24.185Z", + "expires": "2019-04-30T09:55:24.185Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03b1a5666963b51ce", + "takenUntil": "2018-04-30T11:36:55.837Z", + "scheduled": "2018-04-30T10:30:05.162Z", + "started": "2018-04-30T10:30:46.130Z", + "resolved": "2018-04-30T11:18:54.818Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.a295d5ecc028d10fa696" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:24.185Z", + "deadline": "2018-05-01T09:55:24.185Z", + "expires": "2019-04-30T09:55:24.185Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a295d5ecc028d10fa696", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:24.185Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:24.185Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:24.185Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-qr/debug-mochitest-media-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-qr/debug-mochitest-media-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "D_KRIxCqTOSbcnVbHIlUnA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:11.933Z", + "expires": "2019-04-30T09:55:11.933Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-02f56a92d73370c62", + "takenUntil": "2018-04-30T11:10:38.132Z", + "scheduled": "2018-04-30T10:34:56.351Z", + "started": "2018-04-30T10:35:14.528Z", + "resolved": "2018-04-30T10:56:55.873Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "B6KFSq0DRA-8EWrUFN1o0g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.93098ac2247ffe8be474" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:11.933Z", + "deadline": "2018-05-01T09:55:11.933Z", + "expires": "2019-04-30T09:55:11.933Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.93098ac2247ffe8be474", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:11.933Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:11.933Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:11.933Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Db-5MDY7TKe4Fy_PnizP4A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:50.792Z", + "expires": "2019-04-30T09:54:50.792Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-03d6d81af29839cb3", + "takenUntil": "2018-04-30T11:15:32.342Z", + "scheduled": "2018-04-30T10:38:29.299Z", + "started": "2018-04-30T10:40:08.813Z", + "resolved": "2018-04-30T11:01:25.267Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "L7COCN9GSrublARJD_U_LA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.9507fdc9fe6a89a61fc7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:50.792Z", + "deadline": "2018-05-01T09:54:50.792Z", + "expires": "2019-04-30T09:54:50.792Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9507fdc9fe6a89a61fc7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:54:50.792Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:54:50.792Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:54:50.792Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux32/opt-web-platform-tests-e10s-2" + }, + "tags": { + "os": "linux", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-web-platform-tests-e10s-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt2" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "Db0F8Hk5TBCJLZjQHc7OLw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:25.859Z", + "expires": "2019-04-30T09:55:25.859Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-004890014e0ab1d4f", + "takenUntil": "2018-04-30T11:07:10.831Z", + "scheduled": "2018-04-30T10:30:05.158Z", + "started": "2018-04-30T10:31:47.087Z", + "resolved": "2018-04-30T11:01:59.833Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "IOh-tczSST-IZWprUKmsrg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.0245ec9cb6c42e91253b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:25.859Z", + "deadline": "2018-05-01T09:55:25.859Z", + "expires": "2019-04-30T09:55:25.859Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0245ec9cb6c42e91253b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:25.859Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:25.859Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:25.859Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64/debug-mochitest-e10s-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64/debug-mochitest-e10s-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "15" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "De9DF2BDRD6puxmlN9_Vvw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:55:23.139Z", + "expires": "2019-04-30T09:55:23.139Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0cf81be99adc72347", + "takenUntil": "2018-04-30T11:38:24.215Z", + "scheduled": "2018-04-30T11:02:40.475Z", + "started": "2018-04-30T11:03:00.948Z", + "resolved": "2018-04-30T11:18:33.865Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "SeX8_VBUTq6P2ub7SuO-2w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921", + "coalesce.v1.mozilla-central.a05806256c606edfbc4e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:55:23.139Z", + "deadline": "2018-05-01T09:55:23.139Z", + "expires": "2019-04-30T09:55:23.139Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a05806256c606edfbc4e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-30T09:55:23.139Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-30T09:55:23.139Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-30T09:55:23.139Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "test-linux64-pgo/opt-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "toros@mozilla.com", + "label": "test-linux64-pgo/opt-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt1" + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw", + "index": { + "rank": 1525082024 + } + } + } + }, + { + "status": { + "taskId": "NOOFo3BxQ_-l7MyFmfqfYA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "deadline": "2018-05-01T09:54:44.968Z", + "expires": "2019-04-30T09:54:44.968Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-075620ccb93d244b7", + "takenUntil": "2018-04-30T11:24:22.065Z", + "scheduled": "2018-04-30T09:56:18.767Z", + "started": "2018-04-30T09:56:19.836Z", + "resolved": "2018-04-30T11:15:43.137Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw", + "dependencies": [ + "Ct4QXUZVR9WyNqJ93Hi7oA", + "VU1sfjH8TDa7-dnFFsEcxg", + "atUiJvNQQD2DysVIjneLGA", + "MibGDsa4Q7uFNzDf7EV6nw" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-central.pushdate.2018.04.30.20180430095344.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-central.pushlog-id.33921.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-central.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.win64-ccov-debug", + "index.gecko.v2.trunk.revision.63519bfd42ee379f597c0357af2e712ec3cd9f50.firefox.win64-ccov-debug", + "tc-treeherder.v2.mozilla-central.63519bfd42ee379f597c0357af2e712ec3cd9f50.33921" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-30T09:54:44.968Z", + "deadline": "2018-05-01T09:54:44.968Z", + "expires": "2019-04-30T09:54:44.968Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180430095344", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@Ct4QXUZVR9WyNqJ93Hi7oA public/build/sccache2.tar.bz2@atUiJvNQQD2DysVIjneLGA", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "63519bfd42ee379f597c0357af2e712ec3cd9f50" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-30T09:54:44.968Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 63519bfd42ee379f597c0357af2e712ec3cd9f50 https://hg.mozilla.org/mozilla-central .\\build\\src", + ":: TinderboxPrint:63519bfd42ee379f597c0357af2e712ec3cd9f50\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\\ccov_debug.py --branch mozilla-central --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "toros@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/63519bfd42ee379f597c0357af2e712ec3cd9f50/taskcluster/ci/build", + "description": "Win64 Debug Code Coverage ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=63519bfd42ee379f597c0357af2e712ec3cd9f50))", + "name": "build-win64-ccov/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "toros@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-ccov/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "ccov": true + } + }, + "parent": "MibGDsa4Q7uFNzDf7EV6nw" + } + } + } + ], + "continuationToken": "1!32!TWliR0RzYTRRN3VGTnpEZjdFVjZudw--~1!32!RGVMc0pMUnZSUzZGWHA3bm9yZ29WZw--" +} diff --git a/events/tests/fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json b/events/tests/fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json new file mode 100644 index 000000000..564eb7ca2 --- /dev/null +++ b/events/tests/fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json @@ -0,0 +1,30709 @@ +{ + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "tasks": [ + { + "status": { + "taskId": "A-QCe05qQpSknRLWACkMEA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:09.035Z", + "expires": "2019-04-20T03:53:09.035Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-058dc1e587128e185", + "takenUntil": "2018-04-20T05:28:44.210Z", + "scheduled": "2018-04-20T05:08:43.552Z", + "started": "2018-04-20T05:08:44.292Z", + "resolved": "2018-04-20T05:15:44.402Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:09.035Z", + "deadline": "2018-04-21T03:53:09.035Z", + "expires": "2019-04-20T03:53:09.035Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:09.035Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:09.035Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --enable-webrender --total-chunk=8 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-qr/opt-mochitest-webgl-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-qr/opt-mochitest-webgl-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A-jOOuz6QuaCpZvgFvvymg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:11.053Z", + "expires": "2019-04-20T03:53:11.053Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f7a9ac287c0fd2ea", + "takenUntil": "2018-04-20T05:08:50.053Z", + "scheduled": "2018-04-20T04:18:00.397Z", + "started": "2018-04-20T04:18:02.747Z", + "resolved": "2018-04-20T04:54:36.432Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.70db3ead26be8fb675d4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:11.053Z", + "deadline": "2018-04-21T03:53:11.053Z", + "expires": "2019-04-20T03:53:11.053Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.70db3ead26be8fb675d4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:11.053Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:11.053Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:11.053Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=23", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-23" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-23", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 23, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R23" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A0qWb6h6Rga2tNWUPiYw6w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:37.245Z", + "expires": "2019-04-20T03:52:37.245Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0b0cb964c30bbcb28", + "takenUntil": "2018-04-20T06:16:54.103Z", + "scheduled": "2018-04-20T05:39:51.288Z", + "started": "2018-04-20T05:39:51.704Z", + "resolved": "2018-04-20T05:59:07.899Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "X0HFDKG7SGq4-y-ncqsizA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:37.245Z", + "deadline": "2018-04-21T03:52:37.245Z", + "expires": "2019-04-20T03:52:37.245Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:37.245Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:37.245Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "X0HFDKG7SGq4-y-ncqsizA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32-pgo/opt-mochitest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32-pgo/opt-mochitest-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A1JZrYaqSF-z43KYvqJF5g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.007Z", + "expires": "2019-04-20T03:52:45.007Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0c37ef28cfe207de3", + "takenUntil": "2018-04-20T05:13:33.693Z", + "scheduled": "2018-04-20T04:37:45.217Z", + "started": "2018-04-20T04:38:09.971Z", + "resolved": "2018-04-20T04:56:50.296Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.801b73eac33b466a1f4c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.007Z", + "deadline": "2018-04-21T03:52:45.007Z", + "expires": "2019-04-20T03:52:45.007Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.801b73eac33b466a1f4c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:45.007Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:45.007Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:45.007Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=cppunittest", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-cppunit" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 1, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A2PwAMUKQfi329hK76RCIg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:36.995Z", + "expires": "2019-04-20T03:52:36.995Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-197", + "takenUntil": "2018-04-20T05:27:48.826Z", + "scheduled": "2018-04-20T05:07:48.257Z", + "started": "2018-04-20T05:07:48.903Z", + "resolved": "2018-04-20T05:19:59.097Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:36.995Z", + "deadline": "2018-04-21T03:52:36.995Z", + "expires": "2019-04-20T03:52:36.995Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:36.995Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:36.995Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-talos-tps-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A3pDcYWNRVGOrukYLZ0kxQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:11.288Z", + "expires": "2019-04-20T03:53:11.288Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-101", + "takenUntil": "2018-04-20T04:53:55.932Z", + "scheduled": "2018-04-20T04:33:53.980Z", + "started": "2018-04-20T04:33:56.299Z", + "resolved": "2018-04-20T04:48:07.352Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.939c5378b0127198f226" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:11.288Z", + "deadline": "2018-04-21T03:53:11.288Z", + "expires": "2019-04-20T03:53:11.288Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:53:11.288Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:53:11.288Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:53:11.288Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--suite=g5-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-talos-g5-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "g5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A3ueFaxjRsaMnEep_ZbMoQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.329Z", + "expires": "2019-04-20T03:53:08.329Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f92e9c903eda9e62", + "takenUntil": "2018-04-20T05:24:29.977Z", + "scheduled": "2018-04-20T05:04:29.655Z", + "started": "2018-04-20T05:04:30.055Z", + "resolved": "2018-04-20T05:15:23.376Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3c4c91c50063a3d478c1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.329Z", + "deadline": "2018-04-21T03:53:08.329Z", + "expires": "2019-04-20T03:53:08.329Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3c4c91c50063a3d478c1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.329Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.329Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.329Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-pgo/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A4C6B4tBQh-ot6WIbA2QBQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.464Z", + "expires": "2019-04-20T03:52:31.464Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0cd5942571d66ffe3", + "takenUntil": "2018-04-20T05:04:58.495Z", + "scheduled": "2018-04-20T03:53:53.774Z", + "started": "2018-04-20T03:53:55.586Z", + "resolved": "2018-04-20T04:59:51.412Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-rusttests-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-rusttests-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.464Z", + "deadline": "2018-04-21T03:52:31.464Z", + "expires": "2019-04-20T03:52:31.464Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420034833", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T03:52:31.464Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ec3dd3ee2ae4b3a63529a912816a110e925eb2d0 https://hg.mozilla.org/mozilla-central .\\build\\src", + ":: TinderboxPrint:ec3dd3ee2ae4b3a63529a912816a110e925eb2d0\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\\rusttests_opt.py --branch mozilla-central --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build", + "description": "Win64 Opt Rust tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-win64-rusttests/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-rusttests/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "A5xEJ2uNTL67SBpkVABccQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:34.365Z", + "expires": "2019-04-20T03:52:34.365Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-2", + "workerId": "i-059bc1d3d5f98e9f1", + "takenUntil": "2018-04-20T05:08:41.345Z", + "scheduled": "2018-04-20T04:30:28.362Z", + "started": "2018-04-20T04:33:17.652Z", + "resolved": "2018-04-20T04:51:23.140Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f16c11c5899f7e4b4b6c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:34.365Z", + "deadline": "2018-04-21T03:52:34.365Z", + "expires": "2019-04-20T03:52:34.365Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f16c11c5899f7e4b4b6c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:34.365Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:34.365Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:34.365Z", + "type": "directory" + } + }, + "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/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "NEED_PULSEAUDIO": "true", + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-telemetry-tests-client-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-telemetry-tests-client-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "tt-c-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Telemetry client marionette tests with e10s", + "tier": 3, + "symbol": "" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A6zwxXXeS5-UTxJafe8jng", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.763Z", + "expires": "2019-04-20T03:52:48.763Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0153", + "takenUntil": "2018-04-20T04:51:37.717Z", + "scheduled": "2018-04-20T04:31:37.384Z", + "started": "2018-04-20T04:31:37.798Z", + "resolved": "2018-04-20T04:41:00.008Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.42afc339bd8a3d4b029c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.763Z", + "deadline": "2018-04-21T03:52:48.763Z", + "expires": "2019-04-20T03:52:48.763Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.42afc339bd8a3d4b029c", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:48.763Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:48.763Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-marionette-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A71LG-oyRL2xqPOgDGtEIQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.235Z", + "expires": "2019-04-20T03:52:49.235Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b30a4e179b3745db", + "takenUntil": "2018-04-20T05:10:29.735Z", + "scheduled": "2018-04-20T04:33:53.849Z", + "started": "2018-04-20T04:35:06.372Z", + "resolved": "2018-04-20T04:56:45.942Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.49560d5949dfb41726a3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.235Z", + "deadline": "2018-04-21T03:52:49.235Z", + "expires": "2019-04-20T03:52:49.235Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.49560d5949dfb41726a3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.235Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.235Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.235Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A7G2Y3G8S8GPwKtu_M9Rbg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:05.875Z", + "expires": "2019-04-20T03:53:05.875Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ee082df7d73876fb", + "takenUntil": "2018-04-20T05:08:53.643Z", + "scheduled": "2018-04-20T04:18:00.486Z", + "started": "2018-04-20T04:18:06.443Z", + "resolved": "2018-04-20T04:50:34.866Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a39e3bbb85d6a310466e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:05.875Z", + "deadline": "2018-04-21T03:53:05.875Z", + "expires": "2019-04-20T03:53:05.875Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a39e3bbb85d6a310466e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:05.875Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:05.875Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:05.875Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=24", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-10" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-10", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 10, + "total": 24 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "10" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A7alPIKlR5Cxp53Jtxwsyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.224Z", + "expires": "2019-04-20T03:52:48.224Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ea0228df5dfaf7e2", + "takenUntil": "2018-04-20T05:32:16.980Z", + "scheduled": "2018-04-20T05:07:48.275Z", + "started": "2018-04-20T05:12:17.060Z", + "resolved": "2018-04-20T05:24:25.303Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.224Z", + "deadline": "2018-04-21T03:52:48.224Z", + "expires": "2019-04-20T03:52:48.224Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:48.224Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:48.224Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-mochitest-webgl-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-mochitest-webgl-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A7tv5vi6Srquv4hcZ5V3kg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:12.019Z", + "expires": "2019-04-20T03:53:12.019Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f8bd81b758393c7f", + "takenUntil": "2018-04-20T04:55:20.026Z", + "scheduled": "2018-04-20T04:33:53.911Z", + "started": "2018-04-20T04:35:20.147Z", + "resolved": "2018-04-20T04:41:48.799Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1311b68375f81cc90cc4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:12.019Z", + "deadline": "2018-04-21T03:53:12.019Z", + "expires": "2019-04-20T03:53:12.019Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1311b68375f81cc90cc4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:12.019Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:12.019Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:12.019Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--cppunittest-suite=cppunittest", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/opt-cppunit" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-cppunit" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "linux64-qr" + }, + "tier": 2, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "A8Q5WbnZSoifecRw3AKVCg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.226Z", + "expires": "2019-04-20T03:52:38.226Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-021c3d542d891310a", + "takenUntil": "2018-04-20T06:03:20.982Z", + "scheduled": "2018-04-20T05:43:20.612Z", + "started": "2018-04-20T05:43:21.063Z", + "resolved": "2018-04-20T05:55:25.657Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.226Z", + "deadline": "2018-04-21T03:52:38.226Z", + "expires": "2019-04-20T03:52:38.226Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:38.226Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:38.226Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-web-platform-tests-e10s-5" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-web-platform-tests-e10s-5" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "A9a8uhLiTcyGENadgXXDUQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:55.275Z", + "expires": "2019-04-20T03:52:55.275Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0964e486d860a23c3", + "takenUntil": "2018-04-20T04:54:30.759Z", + "scheduled": "2018-04-20T04:30:59.272Z", + "started": "2018-04-20T04:34:30.842Z", + "resolved": "2018-04-20T04:44:24.709Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.22a1bc07220270bfc629" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:55.275Z", + "deadline": "2018-04-21T03:52:55.275Z", + "expires": "2019-04-20T03:52:55.275Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.22a1bc07220270bfc629", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:55.275Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:55.275Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:55.275Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-reftest-no-accel-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/opt-reftest-no-accel-e10s-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AA-gcl_bRZ2YgU97A7Ck1g", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.385Z", + "expires": "2019-04-20T03:52:45.385Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-227", + "takenUntil": "2018-04-20T05:24:30.212Z", + "scheduled": "2018-04-20T05:04:29.748Z", + "started": "2018-04-20T05:04:30.290Z", + "resolved": "2018-04-20T05:09:49.559Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1c6004e826dccc065766" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.385Z", + "deadline": "2018-04-21T03:52:45.385Z", + "expires": "2019-04-20T03:52:45.385Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:52:45.385Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:52:45.385Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:52:45.385Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1500, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos speedometer ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-talos-speedometer-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-speedometer-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "sp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AB5dT98HR4SfUSIRe5PCGg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:14.155Z", + "expires": "2019-04-20T03:53:14.155Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-09cb36f9511032c76", + "takenUntil": "2018-04-20T05:47:59.313Z", + "scheduled": "2018-04-20T05:10:57.521Z", + "started": "2018-04-20T05:10:58.177Z", + "resolved": "2018-04-20T05:30:28.596Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ", + "C_yS_qecRH-YpYnKj1jzFg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:14.155Z", + "deadline": "2018-04-21T03:53:14.155Z", + "expires": "2019-04-20T03:53:14.155Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:14.155Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:14.155Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/C_yS_qecRH-YpYnKj1jzFg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/opt-xpcshell" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ABCB8P94RuGw-Wt35YG68Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:59.117Z", + "expires": "2019-04-20T03:52:59.117Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ee7484a2f12fa559", + "takenUntil": "2018-04-20T05:32:15.797Z", + "scheduled": "2018-04-20T04:37:45.342Z", + "started": "2018-04-20T04:41:29.128Z", + "resolved": "2018-04-20T05:23:10.848Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3969da2059d70ade2ab6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:59.117Z", + "deadline": "2018-04-21T03:52:59.117Z", + "expires": "2019-04-20T03:52:59.117Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3969da2059d70ade2ab6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:59.117Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:59.117Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:59.117Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-2" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ABeI4UndSWO2zy7BjUp3dw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:00.469Z", + "expires": "2019-04-20T03:53:00.469Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-057366dca92484786", + "takenUntil": "2018-04-20T05:21:33.223Z", + "scheduled": "2018-04-20T04:29:33.802Z", + "started": "2018-04-20T04:30:46.184Z", + "resolved": "2018-04-20T05:14:22.081Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3ec7abedbc47b7ff7108" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:00.469Z", + "deadline": "2018-04-21T03:53:00.469Z", + "expires": "2019-04-20T03:53:00.469Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3ec7abedbc47b7ff7108", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:00.469Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:00.469Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:00.469Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ABxhw_yhRNWAXHhi4DDZPQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.083Z", + "expires": "2019-04-20T03:52:52.083Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0026", + "takenUntil": "2018-04-20T04:51:37.630Z", + "scheduled": "2018-04-20T04:31:37.299Z", + "started": "2018-04-20T04:31:37.726Z", + "resolved": "2018-04-20T04:47:16.478Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f883a9a675451a1670c9" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.083Z", + "deadline": "2018-04-21T03:52:52.083Z", + "expires": "2019-04-20T03:52:52.083Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f883a9a675451a1670c9", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:52.083Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:52.083Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/opt-mochitest-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ACFa5hEVTDyMyJ55_9kFDw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.076Z", + "expires": "2019-04-20T03:53:01.076Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-213", + "takenUntil": "2018-04-20T05:27:48.823Z", + "scheduled": "2018-04-20T05:07:48.256Z", + "started": "2018-04-20T05:07:48.902Z", + "resolved": "2018-04-20T05:19:15.961Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.076Z", + "deadline": "2018-04-21T03:53:01.076Z", + "expires": "2019-04-20T03:53:01.076Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:01.076Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:01.076Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=perf-reftest-e10s --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=perf-reftest-e10s --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos perf-reftest ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-talos-perf-reftest-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-perf-reftest-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "p" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ACMCy0RzSG6ecW2SrIo9Gw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:50.420Z", + "expires": "2019-04-20T03:52:50.420Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01622c86f7ee69422", + "takenUntil": "2018-04-20T04:56:23.571Z", + "scheduled": "2018-04-20T04:36:17.149Z", + "started": "2018-04-20T04:36:23.652Z", + "resolved": "2018-04-20T04:43:09.682Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YA6cnEBxSbaBIQWf355S8w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3994061412b676defac2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:50.420Z", + "deadline": "2018-04-21T03:52:50.420Z", + "expires": "2019-04-20T03:52:50.420Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3994061412b676defac2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:50.420Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:50.420Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:50.420Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell-coverage", + "--jsd-code-coverage", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-jsdcov/opt-xpcshell-4" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-jsdcov/opt-xpcshell-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "xpcshell-coverage", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-jsdcov" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AGLLV3ZDQWqyTamb4WnpLA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.162Z", + "expires": "2019-04-20T03:52:41.162Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-042", + "takenUntil": "2018-04-20T06:20:21.537Z", + "scheduled": "2018-04-20T05:43:20.646Z", + "started": "2018-04-20T05:43:21.101Z", + "resolved": "2018-04-20T06:06:46.822Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.162Z", + "deadline": "2018-04-21T03:52:41.162Z", + "expires": "2019-04-20T03:52:41.162Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:41.162Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:41.162Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 2100, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=dromaeojs-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=dromaeojs-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos dromaeojs ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-talos-dromaeojs-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-dromaeojs-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "d" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AH1ERbP9Q32y1K3olbcmHg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:06.755Z", + "expires": "2019-04-20T03:53:06.755Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-00ff190791cf427da", + "takenUntil": "2018-04-20T05:08:35.555Z", + "scheduled": "2018-04-20T04:30:28.326Z", + "started": "2018-04-20T04:33:12.290Z", + "resolved": "2018-04-20T04:53:43.606Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a4ae99a08b6da7e736d0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:06.755Z", + "deadline": "2018-04-21T03:53:06.755Z", + "expires": "2019-04-20T03:53:06.755Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a4ae99a08b6da7e736d0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:06.755Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:06.755Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:06.755Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AIQKoBjjTuOuCY4ylHEWAw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.491Z", + "expires": "2019-04-20T03:52:51.491Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0adfe35f6c2a73aef", + "takenUntil": "2018-04-20T05:29:36.714Z", + "scheduled": "2018-04-20T04:37:45.417Z", + "started": "2018-04-20T04:38:49.507Z", + "resolved": "2018-04-20T05:14:37.862Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.49f55e4435ed3c680d8d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.491Z", + "deadline": "2018-04-21T03:52:51.491Z", + "expires": "2019-04-20T03:52:51.491Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.49f55e4435ed3c680d8d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:51.491Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:51.491Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:51.491Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-6", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AIRBoMsRQOGKMV0PWgoMpQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:05.932Z", + "expires": "2019-04-20T03:53:05.932Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06410362fc8216fc5", + "takenUntil": "2018-04-20T04:53:12.211Z", + "scheduled": "2018-04-20T04:30:28.328Z", + "started": "2018-04-20T04:33:12.314Z", + "resolved": "2018-04-20T04:45:35.911Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.44a2b8079275c8b3bc99" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:05.932Z", + "deadline": "2018-04-21T03:53:05.932Z", + "expires": "2019-04-20T03:53:05.932Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.44a2b8079275c8b3bc99", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:05.932Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:05.932Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:05.932Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-webgl-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-webgl-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AIk93PYjQVO4HXcw-eQCWg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:06.319Z", + "expires": "2019-04-20T03:53:06.319Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-032e73404ffd68f43", + "takenUntil": "2018-04-20T05:29:47.640Z", + "scheduled": "2018-04-20T05:04:27.404Z", + "started": "2018-04-20T05:09:47.716Z", + "resolved": "2018-04-20T05:24:33.891Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:06.319Z", + "deadline": "2018-04-21T03:53:06.319Z", + "expires": "2019-04-20T03:53:06.319Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:06.319Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:06.319Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AJO7TXFwT-KB9eKD0a1O-A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:54.348Z", + "expires": "2019-04-20T03:52:54.348Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-005beb8ef5d8e1e4c", + "takenUntil": "2018-04-20T06:03:20.983Z", + "scheduled": "2018-04-20T05:43:20.649Z", + "started": "2018-04-20T05:43:21.062Z", + "resolved": "2018-04-20T05:52:02.713Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:54.348Z", + "deadline": "2018-04-21T03:52:54.348Z", + "expires": "2019-04-20T03:52:54.348Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:54.348Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:54.348Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-marionette-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "pgo": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AJzPiVhpSKCSisVCugy_fA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.145Z", + "expires": "2019-04-20T03:52:49.145Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0b52d5446ad0cbe36", + "takenUntil": "2018-04-20T05:24:30.025Z", + "scheduled": "2018-04-20T05:04:29.684Z", + "started": "2018-04-20T05:04:30.103Z", + "resolved": "2018-04-20T05:14:47.859Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.08bf410620fc750e2ad3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.145Z", + "deadline": "2018-04-21T03:52:49.145Z", + "expires": "2019-04-20T03:52:49.145Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.08bf410620fc750e2ad3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.145Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.145Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.145Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-reftest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-pgo/opt-reftest-e10s-4", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ALmAinUeSt2CFcmncQJDyQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.430Z", + "expires": "2019-04-20T03:52:48.430Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fd65d1adad0111d3", + "takenUntil": "2018-04-20T04:49:44.709Z", + "scheduled": "2018-04-20T04:29:33.553Z", + "started": "2018-04-20T04:29:44.786Z", + "resolved": "2018-04-20T04:36:24.804Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.2637156970cf73ac5d29" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.430Z", + "deadline": "2018-04-21T03:52:48.430Z", + "expires": "2019-04-20T03:52:48.430Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2637156970cf73ac5d29", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:48.430Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:48.430Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:48.430Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-e10s-16" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-e10s-16", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "16" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AMyeNLITRTWC6OqQn_0oGg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.506Z", + "expires": "2019-04-20T03:53:08.506Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0e5732a7499ec5cd6", + "takenUntil": "2018-04-20T05:29:56.944Z", + "scheduled": "2018-04-20T04:37:45.442Z", + "started": "2018-04-20T04:39:09.566Z", + "resolved": "2018-04-20T05:10:52.458Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3bc22b41d7f9a238a4b4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.506Z", + "deadline": "2018-04-21T03:53:08.506Z", + "expires": "2019-04-20T03:53:08.506Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3bc22b41d7f9a238a4b4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.506Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.506Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.506Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-7", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ANDrBKgOTwmiiDfoANsRLg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:59.123Z", + "expires": "2019-04-20T03:52:59.123Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0509c8c4999ce2a1e", + "takenUntil": "2018-04-20T05:16:50.179Z", + "scheduled": "2018-04-20T04:25:26.919Z", + "started": "2018-04-20T04:26:02.879Z", + "resolved": "2018-04-20T05:00:09.489Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.12ed1eebd62feab17a77" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:59.123Z", + "deadline": "2018-04-21T03:52:59.123Z", + "expires": "2019-04-20T03:52:59.123Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.12ed1eebd62feab17a77", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:59.123Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:59.123Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:59.123Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-web-platform-tests-wdspec-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-wdspec-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wd" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "APIqwsbjR46JV0P_4zpKAg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.895Z", + "expires": "2019-04-20T03:52:38.895Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-103", + "takenUntil": "2018-04-20T05:24:30.022Z", + "scheduled": "2018-04-20T05:04:29.649Z", + "started": "2018-04-20T05:04:30.103Z", + "resolved": "2018-04-20T05:08:38.659Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.b6dbba1ba7d79c655ac2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.895Z", + "deadline": "2018-04-21T03:52:38.895Z", + "expires": "2019-04-20T03:52:38.895Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:52:38.895Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:52:38.895Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:52:38.895Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--suite=h2-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos h2 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-talos-h2-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-h2-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "h2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "APaAZN_NSHm7MMJHBvLYYQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.361Z", + "expires": "2019-04-20T03:53:08.361Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-00a72b7b009344129", + "takenUntil": "2018-04-20T05:29:02.794Z", + "scheduled": "2018-04-20T04:37:45.218Z", + "started": "2018-04-20T04:38:15.542Z", + "resolved": "2018-04-20T05:15:11.284Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.b0287c105eeb62efe4fa" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.361Z", + "deadline": "2018-04-21T03:53:08.361Z", + "expires": "2019-04-20T03:53:08.361Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.b0287c105eeb62efe4fa", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.361Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.361Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.361Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "APfb4RrkTGuKHBwYOIzPTw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:58.206Z", + "expires": "2019-04-20T03:52:58.206Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0c63ff45826876d7e", + "takenUntil": "2018-04-20T05:16:16.241Z", + "scheduled": "2018-04-20T04:25:26.745Z", + "started": "2018-04-20T04:25:29.176Z", + "resolved": "2018-04-20T04:58:48.942Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.9d7d4f375056738344b8" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:58.206Z", + "deadline": "2018-04-21T03:52:58.206Z", + "expires": "2019-04-20T03:52:58.206Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9d7d4f375056738344b8", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:58.206Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:58.206Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:58.206Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-reftest-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-reftest-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ASDMng7MTHuvGVepdMc-kQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.888Z", + "expires": "2019-04-20T03:52:41.888Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0f603a6408ad5aeb7", + "takenUntil": "2018-04-20T06:20:45.301Z", + "scheduled": "2018-04-20T05:07:48.344Z", + "started": "2018-04-20T05:09:40.723Z", + "resolved": "2018-04-20T06:11:43.434Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.888Z", + "deadline": "2018-04-21T03:52:41.888Z", + "expires": "2019-04-20T03:52:41.888Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:41.888Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:41.888Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-awsy-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-awsy-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "SY-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "tier": 1, + "symbol": "sy" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AToCTyRJRquaf7EBPHBa0g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.062Z", + "expires": "2019-04-20T03:53:01.062Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-02083f5e0fdc1effb", + "takenUntil": "2018-04-20T04:52:21.613Z", + "scheduled": "2018-04-20T04:29:33.804Z", + "started": "2018-04-20T04:32:21.692Z", + "resolved": "2018-04-20T04:45:18.083Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.12e52939ad716928c268" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.062Z", + "deadline": "2018-04-21T03:53:01.062Z", + "expires": "2019-04-20T03:53:01.062Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.12e52939ad716928c268", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:01.062Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:01.062Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:01.062Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-xpcshell-7" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-xpcshell-7" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ATu4rDd0T5SeEpCa3kDG6A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:04.756Z", + "expires": "2019-04-20T03:53:04.756Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0661ed9be501b6f45", + "takenUntil": "2018-04-20T05:08:49.277Z", + "scheduled": "2018-04-20T04:18:00.359Z", + "started": "2018-04-20T04:18:02.085Z", + "resolved": "2018-04-20T04:53:13.023Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e298c232eb3a9799a902" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:04.756Z", + "deadline": "2018-04-21T03:53:04.756Z", + "expires": "2019-04-20T03:53:04.756Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e298c232eb3a9799a902", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:04.756Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:04.756Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:04.756Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AUG7Fe3BS_-Pk0SiF6dgTQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.326Z", + "expires": "2019-04-20T03:52:45.326Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0737fed30b7800997", + "takenUntil": "2018-04-20T07:56:11.213Z", + "scheduled": "2018-04-20T07:19:09.033Z", + "started": "2018-04-20T07:19:09.770Z", + "resolved": "2018-04-20T07:48:53.315Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.326Z", + "deadline": "2018-04-21T03:52:45.326Z", + "expires": "2019-04-20T03:52:45.326Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:45.326Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:45.326Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AZ3TFQ96R2mn-UbYxEyu4w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.525Z", + "expires": "2019-04-20T03:52:43.525Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-0fafb143f03f0e742", + "takenUntil": "2018-04-20T05:45:44.678Z", + "scheduled": "2018-04-20T05:08:43.416Z", + "started": "2018-04-20T05:08:44.133Z", + "resolved": "2018-04-20T05:40:30.892Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.525Z", + "deadline": "2018-04-21T03:52:43.525Z", + "expires": "2019-04-20T03:52:43.525Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:43.525Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:43.525Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/opt-mochitest-media-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/opt-mochitest-media-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AaR368P0Q-Cmvr-seKhSTQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:34.292Z", + "expires": "2019-04-20T03:52:34.292Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-010d70d3ba12157f9", + "takenUntil": "2018-04-20T05:20:22.590Z", + "scheduled": "2018-04-20T04:29:33.528Z", + "started": "2018-04-20T04:29:36.106Z", + "resolved": "2018-04-20T05:02:51.249Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.0353b0b14dc9b105dd73" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:34.292Z", + "deadline": "2018-04-21T03:52:34.292Z", + "expires": "2019-04-20T03:52:34.292Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0353b0b14dc9b105dd73", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:34.292Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:34.292Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:34.292Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-mochitest-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/debug-mochitest-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AahSla2ESe2KQG65g_h6ww", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:11.792Z", + "expires": "2019-04-20T03:53:11.792Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e6a46ecf5cc4de64", + "takenUntil": "2018-04-20T06:20:22.169Z", + "scheduled": "2018-04-20T05:43:20.664Z", + "started": "2018-04-20T05:43:21.069Z", + "resolved": "2018-04-20T06:03:00.148Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:11.792Z", + "deadline": "2018-04-21T03:53:11.792Z", + "expires": "2019-04-20T03:53:11.792Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:11.792Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:11.792Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AcaiTRFORgeUx2ZPmgGiMg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:39.378Z", + "expires": "2019-04-20T03:52:39.378Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-032d0475f693d05ee", + "takenUntil": "2018-04-20T05:08:41.125Z", + "scheduled": "2018-04-20T04:30:28.370Z", + "started": "2018-04-20T04:33:17.825Z", + "resolved": "2018-04-20T04:53:42.492Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.dcf2a07402a0d27b9b70" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:39.378Z", + "deadline": "2018-04-21T03:52:39.378Z", + "expires": "2019-04-20T03:52:39.378Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.dcf2a07402a0d27b9b70", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:39.378Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:39.378Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:39.378Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--reftest-suite=reftest-no-accel", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-reftest-no-accel-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-reftest-no-accel-e10s-5", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AcpbCOF7SIufrcc7R68xGA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.717Z", + "expires": "2019-04-20T03:52:31.717Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-04d9ea19f7b2afb86", + "takenUntil": "2018-04-20T05:00:05.118Z", + "scheduled": "2018-04-20T03:53:53.750Z", + "started": "2018-04-20T03:53:55.016Z", + "resolved": "2018-04-20T04:42:58.471Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Q9P417FTSo6f17e8ptSpwQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-valgrind-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-valgrind-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.717Z", + "deadline": "2018-04-21T03:52:31.717Z", + "expires": "2019-04-20T03:52:31.717Z", + "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-mozilla-central-build-linux64-valgrind-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 72000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q9P417FTSo6f17e8ptSpwQ" + }, + "cache": { + "level-3-mozilla-central-build-linux64-valgrind-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:31.717Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180420034833", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build valgrind-test", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "valgrind", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/valgrind", + "description": "Linux64 Valgrind Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "valgrind-linux64-valgrind/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "valgrind", + "label": "valgrind-linux64-valgrind/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "V", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "AdE17KGOQ-y2FWTDatVJug", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:36.049Z", + "expires": "2019-04-20T03:52:36.049Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a27f2341c94e850a", + "takenUntil": "2018-04-20T05:26:12.377Z", + "scheduled": "2018-04-20T04:50:48.066Z", + "started": "2018-04-20T04:50:48.701Z", + "resolved": "2018-04-20T05:09:27.188Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3d4ebddd22699cb0385e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:36.049Z", + "deadline": "2018-04-21T03:52:36.049Z", + "expires": "2019-04-20T03:52:36.049Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3d4ebddd22699cb0385e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:36.049Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:36.049Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:36.049Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--suite=g5-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--code-coverage", + "--add-option", + "--cycles,1", + "--add-option", + "--tppagecycles,1", + "--add-option", + "--no-upload-results", + "--add-option", + "--tptimeout,15000", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "talos/linux64_config_taskcluster.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "talos_script.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-talos-g5-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Talos performance tests with e10s", + "tier": 3, + "symbol": "g5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AdY7HJJxSOOWl06V3npgvg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:00.571Z", + "expires": "2019-04-20T03:53:00.571Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-098060be19b6be9eb", + "takenUntil": "2018-04-20T07:13:47.383Z", + "scheduled": "2018-04-20T05:11:42.503Z", + "started": "2018-04-20T05:11:43.177Z", + "resolved": "2018-04-20T07:10:03.687Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:00.571Z", + "deadline": "2018-04-21T03:53:00.571Z", + "expires": "2019-04-20T03:53:00.571Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:00.571Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:00.571Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --code-coverage --e10s --total-chunk=15 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-web-platform-tests-e10s-4" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 15 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AfaIaZUMS7qapkSPfxbRCg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.725Z", + "expires": "2019-04-20T03:52:56.725Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-090", + "takenUntil": "2018-04-20T05:44:49.665Z", + "scheduled": "2018-04-20T05:07:48.227Z", + "started": "2018-04-20T05:07:48.897Z", + "resolved": "2018-04-20T05:28:18.815Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.725Z", + "deadline": "2018-04-21T03:52:56.725Z", + "expires": "2019-04-20T03:52:56.725Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:56.725Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:56.725Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=g5-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos g5 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-talos-g5-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-g5-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "g5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AjNejVulSBWxWD1Q0t71cw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.245Z", + "expires": "2019-04-20T03:53:02.245Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-025d05bbf15211c09", + "takenUntil": "2018-04-20T08:13:12.143Z", + "scheduled": "2018-04-20T07:19:08.910Z", + "started": "2018-04-20T07:19:09.318Z", + "resolved": "2018-04-20T08:00:16.204Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.245Z", + "deadline": "2018-04-21T03:53:02.245Z", + "expires": "2019-04-20T03:53:02.245Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:02.245Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:02.245Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AjzdmFL3S3yZlXpRURc8aw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:50.090Z", + "expires": "2019-04-20T03:52:50.090Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-1", + "workerId": "i-0dad4bd9717c6d226", + "takenUntil": "2018-04-20T05:26:12.260Z", + "scheduled": "2018-04-20T04:50:48.209Z", + "started": "2018-04-20T04:50:48.737Z", + "resolved": "2018-04-20T05:07:58.115Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.463b04fd4bdd917cc721" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:50.090Z", + "deadline": "2018-04-21T03:52:50.090Z", + "expires": "2019-04-20T03:52:50.090Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.463b04fd4bdd917cc721", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:50.090Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:50.090Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:50.090Z", + "type": "directory" + } + }, + "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/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "NEED_PULSEAUDIO": "true", + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_PATH": "/builds/worker/checkouts/gecko/testing/mozharness", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "telemetry/telemetry_client.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Telemetry tests client run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-telemetry-tests-client-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-telemetry-tests-client-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "telemetry-tests-client", + "name": "telemetry-tests-client" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "tt-c-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Telemetry client marionette tests with e10s", + "tier": 3, + "symbol": "" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AkC8X4tAQLeMoXcQ6AxqAw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:47.452Z", + "expires": "2019-04-20T03:52:47.452Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06dffa3861478c698", + "takenUntil": "2018-04-20T05:24:30.161Z", + "scheduled": "2018-04-20T05:04:29.736Z", + "started": "2018-04-20T05:04:30.243Z", + "resolved": "2018-04-20T05:17:48.697Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.af325ad34b9cb698bcef" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:47.452Z", + "deadline": "2018-04-21T03:52:47.452Z", + "expires": "2019-04-20T03:52:47.452Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.af325ad34b9cb698bcef", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:47.452Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:47.452Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:47.452Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-web-platform-tests-e10s-2" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-e10s-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AljVQH0cTkSyBz4r97p7eA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:40.379Z", + "expires": "2019-04-20T03:52:40.379Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-054f9375ad15d17da", + "takenUntil": "2018-04-20T05:09:49.255Z", + "scheduled": "2018-04-20T04:30:59.237Z", + "started": "2018-04-20T04:34:25.867Z", + "resolved": "2018-04-20T04:49:53.000Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.0a8b358d5a5e569b11f2" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:40.379Z", + "deadline": "2018-04-21T03:52:40.379Z", + "expires": "2019-04-20T03:52:40.379Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0a8b358d5a5e569b11f2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:40.379Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:40.379Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:40.379Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/opt-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AnCPKRt2RbOsQqwK9P_KoA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.904Z", + "expires": "2019-04-20T03:52:44.904Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-04d7d2ef5321175cb", + "takenUntil": "2018-04-20T05:41:30.128Z", + "scheduled": "2018-04-20T05:04:27.424Z", + "started": "2018-04-20T05:04:28.116Z", + "resolved": "2018-04-20T05:25:50.541Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.904Z", + "deadline": "2018-04-21T03:52:44.904Z", + "expires": "2019-04-20T03:52:44.904Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:44.904Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:44.904Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AnD8OQEiT4aGjtebmmBH-A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.289Z", + "expires": "2019-04-20T03:53:01.289Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0faac768f564d4f5d", + "takenUntil": "2018-04-20T05:14:49.490Z", + "scheduled": "2018-04-20T04:37:45.478Z", + "started": "2018-04-20T04:39:26.174Z", + "resolved": "2018-04-20T05:06:12.126Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1ac09eb0d269ce8999dd" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.289Z", + "deadline": "2018-04-21T03:53:01.289Z", + "expires": "2019-04-20T03:53:01.289Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1ac09eb0d269ce8999dd", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:01.289Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:01.289Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:01.289Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-media-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "mda1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AoPUv9FzQouTzGGQrGYWaw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:03.986Z", + "expires": "2019-04-20T03:53:03.986Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0225abc49582c957a", + "takenUntil": "2018-04-20T05:48:44.112Z", + "scheduled": "2018-04-20T05:11:42.719Z", + "started": "2018-04-20T05:11:43.767Z", + "resolved": "2018-04-20T05:43:36.340Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:03.986Z", + "deadline": "2018-04-21T03:53:03.986Z", + "expires": "2019-04-20T03:53:03.986Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:03.986Z", + "type": "directory", + "name": "public/logs" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --jittest-suite=jittest-chunked --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --jittest-suite=jittest-chunked --code-coverage --total-chunk=6 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "JIT Test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-jittest-1" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-jittest-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "suite": { + "flavor": "jittest-chunked", + "name": "jittest" + }, + "treeherder": { + "machine": { + "platform": "windows10-64-ccov" + }, + "tier": 2, + "symbol": "Jit1", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AoyslqslRPikrfzYGtM-Ng", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.787Z", + "expires": "2019-04-20T03:52:52.787Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06902ebc09c79460b", + "takenUntil": "2018-04-20T05:21:22.737Z", + "scheduled": "2018-04-20T04:29:33.741Z", + "started": "2018-04-20T04:30:36.217Z", + "resolved": "2018-04-20T05:10:55.054Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3721cd2e3dec270470f3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.787Z", + "deadline": "2018-04-21T03:52:52.787Z", + "expires": "2019-04-20T03:52:52.787Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3721cd2e3dec270470f3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:52.787Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:52.787Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:52.787Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-mochitest-e10s-9" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/debug-mochitest-e10s-9", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "9" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Ap9Say5tRYq837AvgerwQw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.094Z", + "expires": "2019-04-20T03:52:51.094Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fc9a4774ab23b479", + "takenUntil": "2018-04-20T05:16:15.412Z", + "scheduled": "2018-04-20T04:25:26.604Z", + "started": "2018-04-20T04:25:28.118Z", + "resolved": "2018-04-20T04:56:21.136Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f8177e5137bad95cf780" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.094Z", + "deadline": "2018-04-21T03:52:51.094Z", + "expires": "2019-04-20T03:52:51.094Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f8177e5137bad95cf780", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:51.094Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:51.094Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:51.094Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-xpcshell-9" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X9" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Apz-2Y8SRRm8Tq4qLUAKJQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.367Z", + "expires": "2019-04-20T03:52:44.367Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0dc0ac577613b8fa1", + "takenUntil": "2018-04-20T05:26:12.055Z", + "scheduled": "2018-04-20T04:50:48.048Z", + "started": "2018-04-20T04:50:48.613Z", + "resolved": "2018-04-20T05:20:08.343Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.8e62fdecb19cff95b55b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.367Z", + "deadline": "2018-04-21T03:52:44.367Z", + "expires": "2019-04-20T03:52:44.367Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.8e62fdecb19cff95b55b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:44.367Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:44.367Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:44.367Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-web-platform-tests-reftests-e10s-4" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-web-platform-tests-reftests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "Wr4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Aq7nft0DTK6Gwsm6LaLpOQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.304Z", + "expires": "2019-04-20T03:52:44.304Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a76a5208072f3042", + "takenUntil": "2018-04-20T04:53:25.357Z", + "scheduled": "2018-04-20T04:18:00.343Z", + "started": "2018-04-20T04:18:01.834Z", + "resolved": "2018-04-20T04:37:14.047Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.8b1f2b72c9b5c89680aa" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.304Z", + "deadline": "2018-04-21T03:52:44.304Z", + "expires": "2019-04-20T03:52:44.304Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.8b1f2b72c9b5c89680aa", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:44.304Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:44.304Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:44.304Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-plain-clipboard", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-clipboard" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-clipboard", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "cl" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AqLlU_zJS2m4utMaqceENQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.956Z", + "expires": "2019-04-20T03:52:56.956Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d491a6786fa2443e", + "takenUntil": "2018-04-20T05:08:39.535Z", + "scheduled": "2018-04-20T04:30:28.347Z", + "started": "2018-04-20T04:33:15.867Z", + "resolved": "2018-04-20T05:00:46.185Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.67f3c2b78487ced75e02" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.956Z", + "deadline": "2018-04-21T03:52:56.956Z", + "expires": "2019-04-20T03:52:56.956Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.67f3c2b78487ced75e02", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:56.956Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:56.956Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:56.956Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-media-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-media-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AqcyjSsITNuFgpLg7wUmNQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.423Z", + "expires": "2019-04-20T03:53:01.423Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-202", + "takenUntil": "2018-04-20T05:04:09.717Z", + "scheduled": "2018-04-20T04:27:09.097Z", + "started": "2018-04-20T04:27:09.517Z", + "resolved": "2018-04-20T04:48:09.024Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.04a985978b15a8df1884" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.423Z", + "deadline": "2018-04-21T03:53:01.423Z", + "expires": "2019-04-20T03:53:01.423Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.04a985978b15a8df1884", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:01.423Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:01.423Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-clipboard-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-clipboard-e10s", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "cl" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AsuIwSwUSiWnjoXQmh_fpQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.437Z", + "expires": "2019-04-20T03:52:43.437Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0340760ec284ba0b1", + "takenUntil": "2018-04-20T05:26:12.492Z", + "scheduled": "2018-04-20T04:50:48.242Z", + "started": "2018-04-20T04:50:48.847Z", + "resolved": "2018-04-20T05:12:18.651Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5d01b107b485497c8cb7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.437Z", + "deadline": "2018-04-21T03:52:43.437Z", + "expires": "2019-04-20T03:52:43.437Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5d01b107b485497c8cb7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:43.437Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:43.437Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:43.437Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--code-coverage", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "a11y", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests", + "tier": 2, + "symbol": "a11y" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "AtaK3AqnQwCDQhZx7xyICQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:07.931Z", + "expires": "2019-04-20T03:53:07.931Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0491ca077ac0b0097", + "takenUntil": "2018-04-20T05:09:04.811Z", + "scheduled": "2018-04-20T04:18:00.540Z", + "started": "2018-04-20T04:18:17.587Z", + "resolved": "2018-04-20T04:54:56.419Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.7abb9ce7dd89be61e168" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:07.931Z", + "deadline": "2018-04-21T03:53:07.931Z", + "expires": "2019-04-20T03:53:07.931Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7abb9ce7dd89be61e168", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:07.931Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:07.931Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:07.931Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-3" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "rc3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AuNojaivRwayOhkcUFlkKw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:35.286Z", + "expires": "2019-04-20T03:52:35.286Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-04ba162b7dc1df98b", + "takenUntil": "2018-04-20T05:24:30.148Z", + "scheduled": "2018-04-20T05:04:29.696Z", + "started": "2018-04-20T05:04:30.228Z", + "resolved": "2018-04-20T05:10:06.198Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.14195fa3f53d23dc1b8b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:35.286Z", + "deadline": "2018-04-21T03:52:35.286Z", + "expires": "2019-04-20T03:52:35.286Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.14195fa3f53d23dc1b8b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:35.286Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:35.286Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:35.286Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-web-platform-tests-reftests-e10s-5" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-reftests-e10s-5" + }, + "extra": { + "chunks": { + "current": 5, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Avop9wfsSpeQ4OTDsceh2w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.870Z", + "expires": "2019-04-20T03:52:52.870Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0020", + "takenUntil": "2018-04-20T05:04:10.214Z", + "scheduled": "2018-04-20T04:27:09.274Z", + "started": "2018-04-20T04:27:09.795Z", + "resolved": "2018-04-20T04:45:33.274Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.c866c2bc32fef4cf7af7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.870Z", + "deadline": "2018-04-21T03:52:52.870Z", + "expires": "2019-04-20T03:52:52.870Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c866c2bc32fef4cf7af7", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:52.870Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:52.870Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--mochitest-suite=chrome", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=chrome", + "--total-chunk=3", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-chrome-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AwbyZlxESxWyGgxHNWOzXw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.336Z", + "expires": "2019-04-20T03:52:53.336Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-070", + "takenUntil": "2018-04-20T06:01:51.435Z", + "scheduled": "2018-04-20T05:07:48.243Z", + "started": "2018-04-20T05:07:48.904Z", + "resolved": "2018-04-20T05:51:53.908Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.336Z", + "deadline": "2018-04-21T03:52:53.336Z", + "expires": "2019-04-20T03:52:53.336Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:53.336Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:53.336Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-talos-damp-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "damp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AyF_DkRtRF-oJp8uJzVCNg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.245Z", + "expires": "2019-04-20T03:52:43.245Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-237", + "takenUntil": "2018-04-20T04:53:55.595Z", + "scheduled": "2018-04-20T04:33:53.986Z", + "started": "2018-04-20T04:33:55.672Z", + "resolved": "2018-04-20T04:38:04.912Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.22e11596d35407ac168d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.245Z", + "deadline": "2018-04-21T03:52:43.245Z", + "expires": "2019-04-20T03:52:43.245Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:52:43.245Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:52:43.245Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:52:43.245Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--suite=h2-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos h2 ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-talos-h2-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-h2-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "h2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AyJcLaXBT-CWUdZAAHfeFw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.610Z", + "expires": "2019-04-20T03:52:49.610Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-145", + "takenUntil": "2018-04-20T05:24:30.056Z", + "scheduled": "2018-04-20T05:04:29.671Z", + "started": "2018-04-20T05:04:30.174Z", + "resolved": "2018-04-20T05:15:11.379Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.8ad823fece93650ff962" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.610Z", + "deadline": "2018-04-21T03:52:49.610Z", + "expires": "2019-04-20T03:52:49.610Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:52:49.610Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:52:49.610Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:52:49.610Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--suite=tp5o-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos tp5o ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-talos-tp5o-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-tp5o-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Az_KFGNbQSaeUnOce5oQEQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.555Z", + "expires": "2019-04-20T03:53:08.555Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0220fc91bca962e44", + "takenUntil": "2018-04-20T05:00:50.835Z", + "scheduled": "2018-04-20T04:25:26.300Z", + "started": "2018-04-20T04:25:27.023Z", + "resolved": "2018-04-20T04:55:47.015Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e6f353b06669b1dda067" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.555Z", + "deadline": "2018-04-21T03:53:08.555Z", + "expires": "2019-04-20T03:53:08.555Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e6f353b06669b1dda067", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.555Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.555Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.555Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-xpcshell-8" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Azmp_bi8SNCAL1r5Jcdhkw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.331Z", + "expires": "2019-04-20T03:52:41.331Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-000d431272bc6370a", + "takenUntil": "2018-04-20T05:41:29.983Z", + "scheduled": "2018-04-20T05:04:27.402Z", + "started": "2018-04-20T05:04:27.868Z", + "resolved": "2018-04-20T05:22:48.357Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.331Z", + "deadline": "2018-04-21T03:52:41.331Z", + "expires": "2019-04-20T03:52:41.331Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:41.331Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:41.331Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --gtest-suite=gtest" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-gtest" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-gtest" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "machine": { + "platform": "windows7-32" + }, + "tier": 1, + "symbol": "GTest", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AzmsN5spQlaCFh2VjWPi4g", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.207Z", + "expires": "2019-04-20T03:52:38.207Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-146", + "takenUntil": "2018-04-20T04:53:54.850Z", + "scheduled": "2018-04-20T04:33:53.890Z", + "started": "2018-04-20T04:33:54.930Z", + "resolved": "2018-04-20T04:39:00.651Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a2a3fe92ecf57429fa87" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.207Z", + "deadline": "2018-04-21T03:52:38.207Z", + "expires": "2019-04-20T03:52:38.207Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:52:38.207Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:52:38.207Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:52:38.207Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--suite=perf-reftest-singletons-e10s", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos perf-reftest singletons ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-talos-perf-reftest-singletons-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-perf-reftest-singletons-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "ps" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "AztYqAXDTeunflYsO5SYcw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:55.031Z", + "expires": "2019-04-20T03:52:55.031Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-1", + "workerId": "i-0159dddbe9e289590", + "takenUntil": "2018-04-20T06:12:23.309Z", + "scheduled": "2018-04-20T04:50:48.059Z", + "started": "2018-04-20T04:50:48.702Z", + "resolved": "2018-04-20T06:06:42.058Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.4f138119e5bcd7568a38" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:55.031Z", + "deadline": "2018-04-21T03:52:55.031Z", + "expires": "2019-04-20T03:52:55.031Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.4f138119e5bcd7568a38", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:55.031Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:55.031Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:55.031Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=11", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-web-platform-tests-e10s-11" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-web-platform-tests-e10s-11" + }, + "extra": { + "chunks": { + "current": 11, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt11" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "B-7NQXHzQKOOCMZxWYtJow", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.475Z", + "expires": "2019-04-20T03:52:45.475Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fba3f1fcfc40d3bd", + "takenUntil": "2018-04-20T05:27:52.538Z", + "scheduled": "2018-04-20T05:07:48.279Z", + "started": "2018-04-20T05:07:52.621Z", + "resolved": "2018-04-20T05:24:26.287Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.475Z", + "deadline": "2018-04-21T03:52:45.475Z", + "expires": "2019-04-20T03:52:45.475Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:45.475Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:45.475Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --gtest-suite=gtest" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "GTests run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-gtest" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-gtest" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gtest", + "name": "gtest" + }, + "treeherder": { + "machine": { + "platform": "windows7-32" + }, + "tier": 1, + "symbol": "GTest", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B-RFVVmGT6G8Pxehg8ZAEg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.513Z", + "expires": "2019-04-20T03:53:10.513Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-023ee720c19a648e3", + "takenUntil": "2018-04-20T05:41:30.207Z", + "scheduled": "2018-04-20T05:04:27.431Z", + "started": "2018-04-20T05:04:28.156Z", + "resolved": "2018-04-20T05:32:41.332Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.513Z", + "deadline": "2018-04-21T03:53:10.513Z", + "expires": "2019-04-20T03:53:10.513Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:10.513Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:10.513Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B-Ydy70wR72b79cML7Agnw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.447Z", + "expires": "2019-04-20T03:52:48.447Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-175", + "takenUntil": "2018-04-20T05:08:38.003Z", + "scheduled": "2018-04-20T04:31:37.362Z", + "started": "2018-04-20T04:31:37.804Z", + "resolved": "2018-04-20T04:52:16.769Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.184655c341c7cc39cd4d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.447Z", + "deadline": "2018-04-21T03:52:48.447Z", + "expires": "2019-04-20T03:52:48.447Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.184655c341c7cc39cd4d", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:48.447Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:48.447Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/opt-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B09ADGpFRcKHqeFTlY6Qpg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:54.184Z", + "expires": "2019-04-20T03:52:54.184Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-169", + "takenUntil": "2018-04-20T05:04:09.982Z", + "scheduled": "2018-04-20T04:27:09.242Z", + "started": "2018-04-20T04:27:09.790Z", + "resolved": "2018-04-20T05:00:12.081Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.78e5fb15c8b254d1db09" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:54.184Z", + "deadline": "2018-04-21T03:52:54.184Z", + "expires": "2019-04-20T03:52:54.184Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.78e5fb15c8b254d1db09", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:54.184Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:54.184Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B1HGYmpwTniT4-KC008h7w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:33.208Z", + "expires": "2019-04-20T03:52:33.208Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-205", + "takenUntil": "2018-04-20T04:51:37.676Z", + "scheduled": "2018-04-20T04:31:37.353Z", + "started": "2018-04-20T04:31:37.755Z", + "resolved": "2018-04-20T04:44:33.516Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.13a59c614c7c45665344" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:33.208Z", + "deadline": "2018-04-21T03:52:33.208Z", + "expires": "2019-04-20T03:52:33.208Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.13a59c614c7c45665344", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:33.208Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:33.208Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=4" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-mochitest-devtools-chrome-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/opt-mochitest-devtools-chrome-e10s-4", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B1X9I0yoQ7S6ABwVuF7GMQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.124Z", + "expires": "2019-04-20T03:53:01.124Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0b825063341db4423", + "takenUntil": "2018-04-20T05:24:18.832Z", + "scheduled": "2018-04-20T04:18:00.491Z", + "started": "2018-04-20T04:18:08.067Z", + "resolved": "2018-04-20T05:08:39.182Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.acce7bd2c3401bcde486" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.124Z", + "deadline": "2018-04-21T03:53:01.124Z", + "expires": "2019-04-20T03:53:01.124Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.acce7bd2c3401bcde486", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:01.124Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:01.124Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:01.124Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=14", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-14" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-14", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 14, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R14" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B2BtbaX6QACjn4jDyA-Udw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:54.190Z", + "expires": "2019-04-20T03:52:54.190Z", + "retriesLeft": 4, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "exception", + "reasonCreated": "scheduled", + "reasonResolved": "intermittent-task", + "workerGroup": "us-west-2", + "workerId": "i-014cd4f22285cfa3d", + "takenUntil": "2018-04-20T05:17:35.055Z", + "scheduled": "2018-04-20T04:37:45.251Z", + "started": "2018-04-20T04:42:11.427Z", + "resolved": "2018-04-20T05:07:43.425Z" + }, + { + "runId": 1, + "state": "completed", + "reasonCreated": "task-retry", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-01beecd022e6d9459", + "takenUntil": "2018-04-20T05:43:07.541Z", + "scheduled": "2018-04-20T05:07:43.425Z", + "started": "2018-04-20T05:07:43.874Z", + "resolved": "2018-04-20T05:38:16.579Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a89c12d8d7e0d603222e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:54.190Z", + "deadline": "2018-04-21T03:52:54.190Z", + "expires": "2019-04-20T03:52:54.190Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a89c12d8d7e0d603222e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:54.190Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:54.190Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:54.190Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=10", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-crashtest-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-crashtest-1", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B2fzoWMkRZqo2Wy7QpvEYg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:07.096Z", + "expires": "2019-04-20T03:53:07.096Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-090a98aa2b7a753d9", + "takenUntil": "2018-04-20T06:00:06.720Z", + "scheduled": "2018-04-20T04:37:45.249Z", + "started": "2018-04-20T04:38:32.996Z", + "resolved": "2018-04-20T05:42:01.425Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.c9dfd192c62d7b41e8a4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:07.096Z", + "deadline": "2018-04-21T03:53:07.096Z", + "expires": "2019-04-20T03:53:07.096Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c9dfd192c62d7b41e8a4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:07.096Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:07.096Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:07.096Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B3Dt8o8BSBWYyo2i1CGdcg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.862Z", + "expires": "2019-04-20T03:53:02.862Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fa39c351197b36e7", + "takenUntil": "2018-04-20T05:00:54.634Z", + "scheduled": "2018-04-20T04:25:26.374Z", + "started": "2018-04-20T04:25:31.062Z", + "resolved": "2018-04-20T04:47:45.680Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.595559f5dbfd94715ae7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.862Z", + "deadline": "2018-04-21T03:53:02.862Z", + "expires": "2019-04-20T03:53:02.862Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.595559f5dbfd94715ae7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:02.862Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:02.862Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:02.862Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-clipboard" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-clipboard", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "cl" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B4enHMoESniSFPgNuMtwAw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.823Z", + "expires": "2019-04-20T03:52:38.823Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-034873a0636b0304e", + "takenUntil": "2018-04-20T05:24:30.027Z", + "scheduled": "2018-04-20T05:04:29.673Z", + "started": "2018-04-20T05:04:30.109Z", + "resolved": "2018-04-20T05:07:48.325Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.6ac39b691195435ff986" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.823Z", + "deadline": "2018-04-21T03:52:38.823Z", + "expires": "2019-04-20T03:52:38.823Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.6ac39b691195435ff986", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:38.823Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:38.823Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:38.823Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-xpcshell-4" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-xpcshell-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B9Zi5KDzTrGkxlqjGsJ52w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.980Z", + "expires": "2019-04-20T03:52:38.980Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-04b65915321406352", + "takenUntil": "2018-04-20T05:29:04.776Z", + "scheduled": "2018-04-20T04:37:45.226Z", + "started": "2018-04-20T04:38:17.521Z", + "resolved": "2018-04-20T05:16:02.095Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.8013ff1a2763da487b5e" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.980Z", + "deadline": "2018-04-21T03:52:38.980Z", + "expires": "2019-04-20T03:52:38.980Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.8013ff1a2763da487b5e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:38.980Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:38.980Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:38.980Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=26", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-26" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-26", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 26, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R26" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B9dcRwHPQBqd7SkyqOEmrQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.898Z", + "expires": "2019-04-20T03:52:43.898Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-356", + "takenUntil": "2018-04-20T05:04:10.226Z", + "scheduled": "2018-04-20T04:27:09.282Z", + "started": "2018-04-20T04:27:09.792Z", + "resolved": "2018-04-20T04:54:34.247Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5083ae1ed4de2e271911" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.898Z", + "deadline": "2018-04-21T03:52:43.898Z", + "expires": "2019-04-20T03:52:43.898Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5083ae1ed4de2e271911", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:43.898Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:43.898Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=2" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-2", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BAKchkihSp-LWFaBJaV3LQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:42.078Z", + "expires": "2019-04-20T03:52:42.078Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f25d52f870a05b21", + "takenUntil": "2018-04-20T05:59:49.765Z", + "scheduled": "2018-04-20T04:37:45.223Z", + "started": "2018-04-20T04:38:15.256Z", + "resolved": "2018-04-20T05:42:35.627Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a64215681bfa7d3c9525" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:42.078Z", + "deadline": "2018-04-21T03:52:42.078Z", + "expires": "2019-04-20T03:52:42.078Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a64215681bfa7d3c9525", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:42.078Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:42.078Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:42.078Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BBsYbg0iSU6rU0hkeybFWA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.548Z", + "expires": "2019-04-20T03:52:31.548Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0197dace16e071193", + "takenUntil": "2018-04-20T05:00:04.460Z", + "scheduled": "2018-04-20T03:53:53.744Z", + "started": "2018-04-20T03:53:54.806Z", + "resolved": "2018-04-20T04:50:46.449Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "OrIEcx0KSKmrcil3_vpQ_A", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-ccov-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-ccov-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.548Z", + "deadline": "2018-04-21T03:52:31.548Z", + "expires": "2019-04-20T03:52:31.548Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "docker-worker:cache:level-3-mozilla-central-build-linux64-ccov-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-build-linux64-ccov-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:31.548Z", + "type": "directory" + } + }, + "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": { + "SCCACHE_DISABLE": "1", + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180420034833", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@OrIEcx0KSKmrcil3_vpQ_A public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "MH_CUSTOM_BUILD_VARIANT_CFG": "code-coverage", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build", + "description": "Linux64-CCov Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-linux64-ccov/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-ccov/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64-ccov" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "BBzuTxcJTPySq81nRrFv1Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.617Z", + "expires": "2019-04-20T03:52:31.617Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-008cdabe96b6ce4b3", + "takenUntil": "2018-04-20T04:44:42.578Z", + "scheduled": "2018-04-20T03:53:53.875Z", + "started": "2018-04-20T03:53:55.240Z", + "resolved": "2018-04-20T04:38:18.901Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VdOxLofoQZW8Pyysd2THqQ", + "W8F4pEo0RtGVPGCM_YzLWQ", + "WFQrgPn2RO-jEjfk1-378g", + "aD8ER2TJR-miwww4rU1lKA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.linux64-base-toolchains-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.617Z", + "deadline": "2018-04-21T03:52:31.617Z", + "expires": "2019-04-20T03:52:31.617Z", + "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-mozilla-central-build-linux64-base-toolchains-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-central-build-linux64-base-toolchains-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:31.617Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180420034833", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VdOxLofoQZW8Pyysd2THqQ public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@WFQrgPn2RO-jEjfk1-378g public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build", + "description": "Linux64 base toolchains Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-linux64-base-toolchains/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-base-toolchains/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bb", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "BFa8t3MrQt-_hrdAdphqZQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.608Z", + "expires": "2019-04-20T03:53:10.608Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a0a782bcf4375d62", + "takenUntil": "2018-04-20T05:05:18.454Z", + "scheduled": "2018-04-20T04:29:33.589Z", + "started": "2018-04-20T04:29:54.739Z", + "resolved": "2018-04-20T04:46:36.324Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.90a602a7c482f5163bc9" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.608Z", + "deadline": "2018-04-21T03:53:10.608Z", + "expires": "2019-04-20T03:53:10.608Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.90a602a7c482f5163bc9", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:10.608Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:10.608Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:10.608Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--enable-webrender", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-mochitest-webgl-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/debug-mochitest-webgl-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BFveS9VUQiS3LdKaC28leA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.007Z", + "expires": "2019-04-20T03:53:10.007Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0148", + "takenUntil": "2018-04-20T05:04:09.891Z", + "scheduled": "2018-04-20T04:27:09.120Z", + "started": "2018-04-20T04:27:09.518Z", + "resolved": "2018-04-20T05:01:08.504Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.95d871eb8b471615d999" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.007Z", + "deadline": "2018-04-21T03:53:10.007Z", + "expires": "2019-04-20T03:53:10.007Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.95d871eb8b471615d999", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:10.007Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:10.007Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BFwrR_iJRs-RG2U0lnTUSQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.605Z", + "expires": "2019-04-20T03:53:01.605Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0da84ca996a8f4424", + "takenUntil": "2018-04-20T04:55:15.956Z", + "scheduled": "2018-04-20T04:33:54.564Z", + "started": "2018-04-20T04:35:16.035Z", + "resolved": "2018-04-20T04:48:01.359Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.63f31b6e7c6520dd3413" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.605Z", + "deadline": "2018-04-21T03:53:01.605Z", + "expires": "2019-04-20T03:53:01.605Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.63f31b6e7c6520dd3413", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:01.605Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:01.605Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:01.605Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-web-platform-tests-reftests-e10s-3" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-web-platform-tests-reftests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BFydjeNXQPKBwvilDqCiyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:46.796Z", + "expires": "2019-04-20T03:52:46.796Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06e949d7820daa8a3", + "takenUntil": "2018-04-20T04:56:18.681Z", + "scheduled": "2018-04-20T04:33:54.100Z", + "started": "2018-04-20T04:36:18.769Z", + "resolved": "2018-04-20T04:46:12.656Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.52824eec6c14ce0dcfee" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:46.796Z", + "deadline": "2018-04-21T03:52:46.796Z", + "expires": "2019-04-20T03:52:46.796Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.52824eec6c14ce0dcfee", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:46.796Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:46.796Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:46.796Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-reftest-no-accel-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-reftest-no-accel-e10s-4", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BItfCtUTQKKR3Y--7eecWw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.207Z", + "expires": "2019-04-20T03:52:49.207Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-04290200e822fe6df", + "takenUntil": "2018-04-20T05:11:54.051Z", + "scheduled": "2018-04-20T04:33:54.072Z", + "started": "2018-04-20T04:36:30.506Z", + "resolved": "2018-04-20T04:54:42.419Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.ec4af002c2950fc39e02" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.207Z", + "deadline": "2018-04-21T03:52:49.207Z", + "expires": "2019-04-20T03:52:49.207Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ec4af002c2950fc39e02", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.207Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.207Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.207Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-web-platform-tests-e10s-9" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-web-platform-tests-e10s-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt9" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.622Z", + "expires": "2019-04-20T03:52:31.622Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b1e5c803009f13ec", + "takenUntil": "2018-04-20T05:13:15.216Z", + "scheduled": "2018-04-20T03:53:53.949Z", + "started": "2018-04-20T04:02:12.180Z", + "resolved": "2018-04-20T05:08:41.464Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.win64-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.win64-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.win64-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.622Z", + "deadline": "2018-04-21T03:52:31.622Z", + "expires": "2019-04-20T03:52:31.622Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420034833", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T03:52:31.622Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ec3dd3ee2ae4b3a63529a912816a110e925eb2d0 https://hg.mozilla.org/mozilla-central .\\build\\src", + ":: TinderboxPrint:ec3dd3ee2ae4b3a63529a912816a110e925eb2d0\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 --branch mozilla-central --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build", + "description": "Win64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-win64/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "BPA-0iFhSrys3rnZq9oWlA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.421Z", + "expires": "2019-04-20T03:53:02.421Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ff25238dbc2b7892", + "takenUntil": "2018-04-20T05:28:44.132Z", + "scheduled": "2018-04-20T05:08:43.525Z", + "started": "2018-04-20T05:08:44.209Z", + "resolved": "2018-04-20T05:14:08.691Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.421Z", + "deadline": "2018-04-21T03:53:02.421Z", + "expires": "2019-04-20T03:53:02.421Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:02.421Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:02.421Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --enable-webrender --total-chunk=8 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-qr/opt-mochitest-webgl-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-qr/opt-mochitest-webgl-e10s-4", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BREbguoDTameAWnLBrjRYA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.619Z", + "expires": "2019-04-20T03:52:53.619Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-129", + "takenUntil": "2018-04-20T05:27:48.842Z", + "scheduled": "2018-04-20T05:07:48.319Z", + "started": "2018-04-20T05:07:48.918Z", + "resolved": "2018-04-20T05:18:17.859Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.619Z", + "deadline": "2018-04-21T03:52:53.619Z", + "expires": "2019-04-20T03:52:53.619Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:53.619Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:53.619Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=chromez-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=chromez-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos chrome ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-talos-chrome-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-chrome-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "c" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BRYsnNgLR8a1lini5SihIA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.635Z", + "expires": "2019-04-20T03:52:48.635Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e4b516075189f7ef", + "takenUntil": "2018-04-20T04:56:19.580Z", + "scheduled": "2018-04-20T04:33:54.067Z", + "started": "2018-04-20T04:36:19.660Z", + "resolved": "2018-04-20T04:43:10.834Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.2be2a9e6ded0d995ac4b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.635Z", + "deadline": "2018-04-21T03:52:48.635Z", + "expires": "2019-04-20T03:52:48.635Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2be2a9e6ded0d995ac4b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:48.635Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:48.635Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:48.635Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-reftest-no-accel-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-reftest-no-accel-e10s-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BSza6TRQRuyM6wb6S9bZuA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.139Z", + "expires": "2019-04-20T03:52:53.139Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06426aaafbc55a108", + "takenUntil": "2018-04-20T04:52:27.228Z", + "scheduled": "2018-04-20T04:30:59.372Z", + "started": "2018-04-20T04:32:27.306Z", + "resolved": "2018-04-20T04:38:03.855Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1af01d2c0a65aeb63edb" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.139Z", + "deadline": "2018-04-21T03:52:53.139Z", + "expires": "2019-04-20T03:52:53.139Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1af01d2c0a65aeb63edb", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:53.139Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:53.139Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:53.139Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-web-platform-tests-reftests-e10s-2" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-web-platform-tests-reftests-e10s-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BTS_YydpTqWwexLmNkPhiA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.117Z", + "expires": "2019-04-20T03:52:41.117Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-039e1b3576367c2a7", + "takenUntil": "2018-04-20T05:29:38.922Z", + "scheduled": "2018-04-20T05:07:48.341Z", + "started": "2018-04-20T05:09:38.999Z", + "resolved": "2018-04-20T05:21:27.764Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.117Z", + "deadline": "2018-04-21T03:52:41.117Z", + "expires": "2019-04-20T03:52:41.117Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:41.117Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:41.117Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-mochitest-devtools-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-mochitest-devtools-chrome-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BTuTM8g_Q6KdgSNynsnFRg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.987Z", + "expires": "2019-04-20T03:52:44.987Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-013203e5fc6777869", + "takenUntil": "2018-04-20T05:31:23.403Z", + "scheduled": "2018-04-20T05:07:48.468Z", + "started": "2018-04-20T05:11:23.483Z", + "resolved": "2018-04-20T05:21:11.257Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.987Z", + "deadline": "2018-04-21T03:52:44.987Z", + "expires": "2019-04-20T03:52:44.987Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:44.987Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:44.987Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BVC7P5uZQ5Kry1oARbHJCA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.348Z", + "expires": "2019-04-20T03:52:41.348Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a1edca5293a0f1f3", + "takenUntil": "2018-04-20T05:12:36.477Z", + "scheduled": "2018-04-20T04:36:17.416Z", + "started": "2018-04-20T04:37:12.596Z", + "resolved": "2018-04-20T04:53:18.769Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YA6cnEBxSbaBIQWf355S8w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.9794cd62855d65ae3698" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.348Z", + "deadline": "2018-04-21T03:52:41.348Z", + "expires": "2019-04-20T03:52:41.348Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9794cd62855d65ae3698", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:41.348Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:41.348Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:41.348Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-coverage", + "--jsd-code-coverage", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-coverage", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-jsdcov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BVYysCDHSrK8D3Q6fMP6CA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:50.941Z", + "expires": "2019-04-20T03:52:50.941Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-005d5f761988817a5", + "takenUntil": "2018-04-20T06:41:16.435Z", + "scheduled": "2018-04-20T05:11:42.608Z", + "started": "2018-04-20T05:13:11.492Z", + "resolved": "2018-04-20T06:27:20.205Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:50.941Z", + "deadline": "2018-04-21T03:52:50.941Z", + "expires": "2019-04-20T03:52:50.941Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:50.941Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:50.941Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --code-coverage --e10s --total-chunk=10 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "dt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BVfpZ-sYROOJCqDQLM-QHg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:07.336Z", + "expires": "2019-04-20T03:53:07.336Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06426aaafbc55a108", + "takenUntil": "2018-04-20T05:28:56.643Z", + "scheduled": "2018-04-20T04:37:45.214Z", + "started": "2018-04-20T04:38:09.528Z", + "resolved": "2018-04-20T05:21:31.027Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.24d1edd4dba4f08c2d51" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:07.336Z", + "deadline": "2018-04-21T03:53:07.336Z", + "expires": "2019-04-20T03:53:07.336Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.24d1edd4dba4f08c2d51", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:07.336Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:07.336Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:07.336Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=14", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-14" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-14", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 14, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R14" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BWlxEWvDT5acxVsT0hOSEg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.155Z", + "expires": "2019-04-20T03:52:52.155Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-01500cb5142bb9d60", + "takenUntil": "2018-04-20T04:57:10.309Z", + "scheduled": "2018-04-20T04:36:17.404Z", + "started": "2018-04-20T04:37:10.403Z", + "resolved": "2018-04-20T04:49:40.354Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YA6cnEBxSbaBIQWf355S8w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5a94d083463670982c28" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.155Z", + "deadline": "2018-04-21T03:52:52.155Z", + "expires": "2019-04-20T03:52:52.155Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5a94d083463670982c28", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:52.155Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:52.155Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:52.155Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked-coverage", + "--jsd-code-coverage", + "--e10s", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-jsdcov/opt-mochitest-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-jsdcov/opt-mochitest-e10s-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked-coverage", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-jsdcov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BZ4Ad6YGQWeg2b4pvTUWDg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:03.760Z", + "expires": "2019-04-20T03:53:03.760Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-069", + "takenUntil": "2018-04-20T06:02:47.209Z", + "scheduled": "2018-04-20T05:08:43.531Z", + "started": "2018-04-20T05:08:44.075Z", + "resolved": "2018-04-20T05:50:46.600Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:03.760Z", + "deadline": "2018-04-21T03:53:03.760Z", + "expires": "2019-04-20T03:53:03.760Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:03.760Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:03.760Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/opt-talos-damp-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "damp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BZCnUhSQSyCoHPvlaFa5lg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:39.992Z", + "expires": "2019-04-20T03:52:39.992Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-00af334e5aaee7e33", + "takenUntil": "2018-04-20T05:41:35.566Z", + "scheduled": "2018-04-20T04:50:48.285Z", + "started": "2018-04-20T04:50:48.949Z", + "resolved": "2018-04-20T05:23:44.470Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.9a0d20e38965f6de4707" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:39.992Z", + "deadline": "2018-04-21T03:52:39.992Z", + "expires": "2019-04-20T03:52:39.992Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.9a0d20e38965f6de4707", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:39.992Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:39.992Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:39.992Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--code-coverage", + "--e10s", + "--total-chunk=10", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-mochitest-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-e10s-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BZW_HgqqSnSlwtcEPLgNlw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:36.292Z", + "expires": "2019-04-20T03:52:36.292Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-09768a3cf30587e46", + "takenUntil": "2018-04-20T04:55:42.005Z", + "scheduled": "2018-04-20T04:33:54.449Z", + "started": "2018-04-20T04:35:42.084Z", + "resolved": "2018-04-20T04:39:35.987Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5e89e4fe72accb0c0171" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:36.292Z", + "deadline": "2018-04-21T03:52:36.292Z", + "expires": "2019-04-20T03:52:36.292Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5e89e4fe72accb0c0171", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:36.292Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:36.292Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:36.292Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-gpu,chrome-gpu,browser-chrome-gpu", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/opt-mochitest-gpu-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/opt-mochitest-gpu-e10s", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "gpu", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gpu" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B_QgzPj8SS2HIq2eRTMKGQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:38.683Z", + "expires": "2019-04-20T03:52:38.683Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0079", + "takenUntil": "2018-04-20T04:51:38.602Z", + "scheduled": "2018-04-20T04:31:37.583Z", + "started": "2018-04-20T04:31:38.680Z", + "resolved": "2018-04-20T04:42:40.566Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3d1a1ccae8348fc49704" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:38.683Z", + "deadline": "2018-04-21T03:52:38.683Z", + "expires": "2019-04-20T03:52:38.683Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3d1a1ccae8348fc49704", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:38.683Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:38.683Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1500, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/talos_script.py", + "--cfg", + "mozharness/configs/talos/mac_config.py", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos speedometer ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-talos-speedometer-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-talos-speedometer-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "sp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "B_mxDglkQ9aH7bgL6OZMKw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:12.458Z", + "expires": "2019-04-20T03:53:12.458Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0af6fe24f733bdb7d", + "takenUntil": "2018-04-20T05:00:50.677Z", + "scheduled": "2018-04-20T04:25:26.485Z", + "started": "2018-04-20T04:25:27.381Z", + "resolved": "2018-04-20T04:47:51.178Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.eb614d59ba535bbcbcc7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:12.458Z", + "deadline": "2018-04-21T03:53:12.458Z", + "expires": "2019-04-20T03:53:12.458Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.eb614d59ba535bbcbcc7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:12.458Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:12.458Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:12.458Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BclBh8CDTHO3ExdA39Pecg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:57.944Z", + "expires": "2019-04-20T03:52:57.944Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c4dab6b7ea2100e2", + "takenUntil": "2018-04-20T04:55:48.451Z", + "scheduled": "2018-04-20T04:33:54.122Z", + "started": "2018-04-20T04:35:48.531Z", + "resolved": "2018-04-20T04:49:34.096Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3abe543fe0a9a2741291" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:57.944Z", + "deadline": "2018-04-21T03:52:57.944Z", + "expires": "2019-04-20T03:52:57.944Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3abe543fe0a9a2741291", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:57.944Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:57.944Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:57.944Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-xpcshell-8" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-xpcshell-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Be9oUXAGSji_tpYGjZs2eA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:12.959Z", + "expires": "2019-04-20T03:53:12.959Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0866c84cdbc77b5e2", + "takenUntil": "2018-04-20T05:28:19.961Z", + "scheduled": "2018-04-20T05:04:27.391Z", + "started": "2018-04-20T05:08:20.041Z", + "resolved": "2018-04-20T05:24:15.853Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:12.959Z", + "deadline": "2018-04-21T03:53:12.959Z", + "expires": "2019-04-20T03:53:12.959Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:12.959Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:12.959Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-mochitest-webgl-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-mochitest-webgl-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BeRVDgTFSW2VxLjLmR5NSw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.135Z", + "expires": "2019-04-20T03:53:08.135Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-00d7857c4dc4f102a", + "takenUntil": "2018-04-20T05:08:48.653Z", + "scheduled": "2018-04-20T04:18:00.321Z", + "started": "2018-04-20T04:18:01.335Z", + "resolved": "2018-04-20T05:03:55.491Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.8acdc08a77cb59ce47f5" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.135Z", + "deadline": "2018-04-21T03:53:08.135Z", + "expires": "2019-04-20T03:53:08.135Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.8acdc08a77cb59ce47f5", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.135Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.135Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.135Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=22", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-22" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-22", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 22, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R22" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BeUqQw4IR6ilZU8wQlbLdw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.681Z", + "expires": "2019-04-20T03:52:31.681Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e2d0dd5dc7ec9513", + "takenUntil": "2018-04-20T05:13:09.634Z", + "scheduled": "2018-04-20T03:53:53.941Z", + "started": "2018-04-20T04:02:08.658Z", + "resolved": "2018-04-20T05:02:40.611Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "A7tJzqugQTiQTixLfy6JaA", + "Puq7J0iESOuAjkz7mlHTNw", + "a9MBxhcaSwet5Pw45wA_kA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-st-an-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.firefox.win64-st-an-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.681Z", + "deadline": "2018-04-21T03:52:31.681Z", + "expires": "2019-04-20T03:52:31.681Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420034833", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@A7tJzqugQTiQTixLfy6JaA public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T03:52:31.681Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ec3dd3ee2ae4b3a63529a912816a110e925eb2d0 https://hg.mozilla.org/mozilla-central .\\build\\src", + ":: TinderboxPrint:ec3dd3ee2ae4b3a63529a912816a110e925eb2d0\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 mozilla-central --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/static-analysis", + "description": "Win64 Static Analysis Opt (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "static-analysis-win64-st-an/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "BepjNbo0QqiKkEb0OU7_XA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:50.066Z", + "expires": "2019-04-20T03:52:50.066Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03dda7ba07047fe8a", + "takenUntil": "2018-04-20T05:28:16.899Z", + "scheduled": "2018-04-20T05:07:48.307Z", + "started": "2018-04-20T05:08:16.979Z", + "resolved": "2018-04-20T05:16:37.305Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:50.066Z", + "deadline": "2018-04-21T03:52:50.066Z", + "expires": "2019-04-20T03:52:50.066Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:50.066Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:50.066Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=a11y" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BfRGEEWeQvGwa5dE8cpzsw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:05.084Z", + "expires": "2019-04-20T03:53:05.084Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-west-2", + "workerId": "i-0653b64114bba6dfe", + "takenUntil": "2018-04-20T05:24:30.368Z", + "scheduled": "2018-04-20T05:04:29.799Z", + "started": "2018-04-20T05:04:30.449Z", + "resolved": "2018-04-20T05:18:23.064Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.3882aa5a0752ce4dfd99" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:05.084Z", + "deadline": "2018-04-21T03:53:05.084Z", + "expires": "2019-04-20T03:53:05.084Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.3882aa5a0752ce4dfd99", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:05.084Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:05.084Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:05.084Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BfnkF1yyRReSSwvmrefjwA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.201Z", + "expires": "2019-04-20T03:52:43.201Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0127332de00f6a28a", + "takenUntil": "2018-04-20T05:49:41.503Z", + "scheduled": "2018-04-20T05:07:48.356Z", + "started": "2018-04-20T05:12:39.384Z", + "resolved": "2018-04-20T05:39:28.294Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.201Z", + "deadline": "2018-04-21T03:52:43.201Z", + "expires": "2019-04-20T03:52:43.201Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:43.201Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:43.201Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest-gpu --e10s --total-chunk=2 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-reftest-gpu-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-reftest-gpu-e10s-1", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 2 + }, + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Rg1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BgDOVssDQViUtGA-kHBxvA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.812Z", + "expires": "2019-04-20T03:52:44.812Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f283d4b67c334271", + "takenUntil": "2018-04-20T05:29:19.435Z", + "scheduled": "2018-04-20T04:37:45.245Z", + "started": "2018-04-20T04:38:32.284Z", + "resolved": "2018-04-20T05:11:13.657Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.753687806ba7fd9be938" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.812Z", + "deadline": "2018-04-21T03:52:44.812Z", + "expires": "2019-04-20T03:52:44.812Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.753687806ba7fd9be938", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:44.812Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:44.812Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:44.812Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=29", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-29" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-29", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 29, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "29" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BgXx9mBVQxKn-M8igi5M4w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.154Z", + "expires": "2019-04-20T03:52:53.154Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-04b11d1e9c0096e00", + "takenUntil": "2018-04-20T06:02:25.192Z", + "scheduled": "2018-04-20T04:25:26.319Z", + "started": "2018-04-20T04:25:29.187Z", + "resolved": "2018-04-20T05:53:12.490Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.deb20f66eca09293b46f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.154Z", + "deadline": "2018-04-21T03:52:53.154Z", + "expires": "2019-04-20T03:52:53.154Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.deb20f66eca09293b46f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:53.154Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:53.154Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:53.154Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-web-platform-tests-e10s-4" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BgbgBxYKTRGLbyxSzw0_Iw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:09.279Z", + "expires": "2019-04-20T03:53:09.279Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-09d57c56cde719546", + "takenUntil": "2018-04-20T05:07:53.921Z", + "scheduled": "2018-04-20T04:29:33.760Z", + "started": "2018-04-20T04:32:30.657Z", + "resolved": "2018-04-20T05:00:24.238Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.ba7e668539117283fcb8" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:09.279Z", + "deadline": "2018-04-21T03:53:09.279Z", + "expires": "2019-04-20T03:53:09.279Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ba7e668539117283fcb8", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:09.279Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:09.279Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:09.279Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-reftest-no-accel-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-reftest-no-accel-e10s-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BhiBed9MTgGA8WVkKCoPgQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:57.966Z", + "expires": "2019-04-20T03:52:57.966Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0924aa32ccb9e5e0a", + "takenUntil": "2018-04-20T05:06:16.623Z", + "scheduled": "2018-04-20T04:29:33.821Z", + "started": "2018-04-20T04:30:53.237Z", + "resolved": "2018-04-20T04:56:56.914Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.50edb13670250b69ebbd" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:57.966Z", + "deadline": "2018-04-21T03:52:57.966Z", + "expires": "2019-04-20T03:52:57.966Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.50edb13670250b69ebbd", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:57.966Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:57.966Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:57.966Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BjqV7Y70S9Wj9pRfBFdheg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.163Z", + "expires": "2019-04-20T03:52:52.163Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-080ba828102c4165c", + "takenUntil": "2018-04-20T05:11:39.881Z", + "scheduled": "2018-04-20T04:33:54.039Z", + "started": "2018-04-20T04:36:16.375Z", + "resolved": "2018-04-20T04:54:35.445Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1653f86ca58f6f20cc1b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.163Z", + "deadline": "2018-04-21T03:52:52.163Z", + "expires": "2019-04-20T03:52:52.163Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1653f86ca58f6f20cc1b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:52.163Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:52.163Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:52.163Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-mochitest-plain-headless-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-mochitest-plain-headless-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BkJ5akFmTpCWzE2_fgLZ_w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:35.542Z", + "expires": "2019-04-20T03:52:35.542Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-243", + "takenUntil": "2018-04-20T05:45:45.637Z", + "scheduled": "2018-04-20T05:08:43.467Z", + "started": "2018-04-20T05:08:44.012Z", + "resolved": "2018-04-20T05:26:31.619Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:35.542Z", + "deadline": "2018-04-21T03:52:35.542Z", + "expires": "2019-04-20T03:52:35.542Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:35.542Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:35.542Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tp5o-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tp5o-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos tp5o ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/opt-talos-tp5o-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-talos-tp5o-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Blr0VD-yS46Y9bFnjFwaag", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.028Z", + "expires": "2019-04-20T03:52:43.028Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-099cd644792a7cac4", + "takenUntil": "2018-04-20T05:46:37.931Z", + "scheduled": "2018-04-20T04:37:45.560Z", + "started": "2018-04-20T04:40:27.318Z", + "resolved": "2018-04-20T05:27:18.553Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5a8ad9dd4dcb19ed8c21" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.028Z", + "deadline": "2018-04-21T03:52:43.028Z", + "expires": "2019-04-20T03:52:43.028Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5a8ad9dd4dcb19ed8c21", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:43.028Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:43.028Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:43.028Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=21", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-21" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-21", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 21, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R21" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BmzGSk0wR3CSXe6K0qkMSQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:34.296Z", + "expires": "2019-04-20T03:52:34.296Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-288", + "takenUntil": "2018-04-20T05:04:10.290Z", + "scheduled": "2018-04-20T04:27:09.305Z", + "started": "2018-04-20T04:27:09.855Z", + "resolved": "2018-04-20T04:56:10.971Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.0eaf47fb7ef2117ca4da" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:34.296Z", + "deadline": "2018-04-21T03:52:34.296Z", + "expires": "2019-04-20T03:52:34.296Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0eaf47fb7ef2117ca4da", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:34.296Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:34.296Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Bncswe5YQfq8p8ouflZ5xw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.534Z", + "expires": "2019-04-20T03:52:51.534Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f838ab6899be68c0", + "takenUntil": "2018-04-20T04:54:38.231Z", + "scheduled": "2018-04-20T04:30:59.355Z", + "started": "2018-04-20T04:34:38.309Z", + "resolved": "2018-04-20T04:42:34.154Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a9052a65a37eb013070f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.534Z", + "deadline": "2018-04-21T03:52:51.534Z", + "expires": "2019-04-20T03:52:51.534Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a9052a65a37eb013070f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:51.534Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:51.534Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:51.534Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-reftest-no-accel-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/opt-reftest-no-accel-e10s-5", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BnuCZ5ggQTiE5_QC70HH7Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:40.006Z", + "expires": "2019-04-20T03:52:40.006Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f9832d8273df6dc2", + "takenUntil": "2018-04-20T05:58:31.547Z", + "scheduled": "2018-04-20T05:04:27.393Z", + "started": "2018-04-20T05:04:27.813Z", + "resolved": "2018-04-20T05:53:23.531Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:40.006Z", + "deadline": "2018-04-21T03:52:40.006Z", + "expires": "2019-04-20T03:52:40.006Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:40.006Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:40.006Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=10" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-web-platform-tests-e10s-10" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/debug-web-platform-tests-e10s-10" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt10" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Bp2HZiIWRc6nmssC1FL57w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:58.549Z", + "expires": "2019-04-20T03:52:58.549Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0fcee47aef4b0ee89", + "takenUntil": "2018-04-20T05:16:14.724Z", + "scheduled": "2018-04-20T04:25:26.568Z", + "started": "2018-04-20T04:25:28.123Z", + "resolved": "2018-04-20T04:59:15.686Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f8126fda997b2a4e07e0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:58.549Z", + "deadline": "2018-04-21T03:52:58.549Z", + "expires": "2019-04-20T03:52:58.549Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f8126fda997b2a4e07e0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:58.549Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:58.549Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:58.549Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-reftest-no-accel-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-reftest-no-accel-e10s-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BtJ7QiZjRC6X4NfF5H-4XA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.101Z", + "expires": "2019-04-20T03:53:10.101Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a127b82f40c407d6", + "takenUntil": "2018-04-20T04:52:17.363Z", + "scheduled": "2018-04-20T04:29:33.807Z", + "started": "2018-04-20T04:32:17.444Z", + "resolved": "2018-04-20T04:39:01.510Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.865f1cf70607c440386c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.101Z", + "deadline": "2018-04-21T03:53:10.101Z", + "expires": "2019-04-20T03:53:10.101Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.865f1cf70607c440386c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:10.101Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:10.101Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:10.101Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-16" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-16", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h16" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BtwaWNXYQC6nkH0sI8_01g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:06.510Z", + "expires": "2019-04-20T03:53:06.510Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-05159e635aef0afde", + "takenUntil": "2018-04-20T05:28:21.944Z", + "scheduled": "2018-04-20T05:07:48.327Z", + "started": "2018-04-20T05:08:22.023Z", + "resolved": "2018-04-20T05:16:21.957Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:06.510Z", + "deadline": "2018-04-21T03:53:06.510Z", + "expires": "2019-04-20T03:53:06.510Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:06.510Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:06.510Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=reftest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-web-platform-tests-reftests-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-web-platform-tests-reftests-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BtzHi0rjRAeRKDI2UQB9Hw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:46.591Z", + "expires": "2019-04-20T03:52:46.591Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-089f2eed3cc0561fd", + "takenUntil": "2018-04-20T05:05:14.906Z", + "scheduled": "2018-04-20T04:29:33.756Z", + "started": "2018-04-20T04:29:51.393Z", + "resolved": "2018-04-20T04:53:39.188Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.edf82950356fa06ce70a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:46.591Z", + "deadline": "2018-04-21T03:52:46.591Z", + "expires": "2019-04-20T03:52:46.591Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.edf82950356fa06ce70a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:46.591Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:46.591Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:46.591Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-clipboard-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-clipboard-e10s", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "cl" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BuUnKHWjStmJ7-B-1X2fKA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:47.665Z", + "expires": "2019-04-20T03:52:47.665Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0c0690be24b06799e", + "takenUntil": "2018-04-20T05:26:12.354Z", + "scheduled": "2018-04-20T04:50:48.247Z", + "started": "2018-04-20T04:50:48.853Z", + "resolved": "2018-04-20T05:18:46.248Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.2fe9fbb34d706c6847f5" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:47.665Z", + "deadline": "2018-04-21T03:52:47.665Z", + "expires": "2019-04-20T03:52:47.665Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.2fe9fbb34d706c6847f5", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:47.665Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:47.665Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:47.665Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--code-coverage", + "--e10s", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-mochitest-webgl-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-webgl-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "BvKHGa0FRVyYNRPGvj89Aw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:03.020Z", + "expires": "2019-04-20T03:53:03.020Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-043d20b10637d511a", + "takenUntil": "2018-04-20T05:33:03.934Z", + "scheduled": "2018-04-20T04:37:46.154Z", + "started": "2018-04-20T04:42:16.495Z", + "resolved": "2018-04-20T05:26:00.040Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.01e0ee0eb68de49ceb75" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:03.020Z", + "deadline": "2018-04-21T03:53:03.020Z", + "expires": "2019-04-20T03:53:03.020Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.01e0ee0eb68de49ceb75", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:03.020Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:03.020Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:03.020Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=38", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-38" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-38", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 38, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "38" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BxMjmtSTRj66Jq9NEmkuPA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.454Z", + "expires": "2019-04-20T03:52:52.454Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-08ffbc3ca90053f78", + "takenUntil": "2018-04-20T06:03:16.630Z", + "scheduled": "2018-04-20T05:04:27.397Z", + "started": "2018-04-20T05:09:13.871Z", + "resolved": "2018-04-20T05:47:31.411Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.454Z", + "deadline": "2018-04-21T03:52:52.454Z", + "expires": "2019-04-20T03:52:52.454Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:52.454Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:52.454Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=4 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-reftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-reftest-e10s-2", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BzDsg8lKRlqWRmgSQFTy1Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.863Z", + "expires": "2019-04-20T03:53:08.863Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0947ef7aa6da7d64b", + "takenUntil": "2018-04-20T05:00:50.290Z", + "scheduled": "2018-04-20T04:25:26.309Z", + "started": "2018-04-20T04:25:26.983Z", + "resolved": "2018-04-20T04:48:32.159Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.7484ab8b9c6fcf3721c4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.863Z", + "deadline": "2018-04-21T03:53:08.863Z", + "expires": "2019-04-20T03:53:08.863Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7484ab8b9c6fcf3721c4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.863Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.863Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.863Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "15" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BzIKNxgAR4ezsMOmlpWJaw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:59.833Z", + "expires": "2019-04-20T03:52:59.833Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-09adfbd331cfa5683", + "takenUntil": "2018-04-20T07:39:09.691Z", + "scheduled": "2018-04-20T07:19:09.115Z", + "started": "2018-04-20T07:19:09.768Z", + "resolved": "2018-04-20T07:31:53.139Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:59.833Z", + "deadline": "2018-04-21T03:52:59.833Z", + "expires": "2019-04-20T03:52:59.833Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:59.833Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:59.833Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=crashtest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/debug-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "BzVOetfvT9m3VJXEw5OwBg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:33.122Z", + "expires": "2019-04-20T03:52:33.122Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-234", + "takenUntil": "2018-04-20T05:25:38.704Z", + "scheduled": "2018-04-20T04:31:37.502Z", + "started": "2018-04-20T04:31:38.187Z", + "resolved": "2018-04-20T05:17:56.259Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5708545530f07c2cf107" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:33.122Z", + "deadline": "2018-04-21T03:52:33.122Z", + "expires": "2019-04-20T03:52:33.122Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5708545530f07c2cf107", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:33.122Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:33.122Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=5", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-web-platform-tests-e10s-1" + }, + "tags": { + "os": "macosx", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "C0kXWDM9Rzi4sEOsuq9dbA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:54.504Z", + "expires": "2019-04-20T03:52:54.504Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-081", + "takenUntil": "2018-04-20T07:56:09.924Z", + "scheduled": "2018-04-20T07:19:08.964Z", + "started": "2018-04-20T07:19:09.392Z", + "resolved": "2018-04-20T07:43:42.905Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:54.504Z", + "deadline": "2018-04-21T03:52:54.504Z", + "expires": "2019-04-20T03:52:54.504Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:54.504Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:54.504Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=4 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-reftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/debug-reftest-e10s-2", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "C2SIP0KhQyik8ONrLE74AA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:44.169Z", + "expires": "2019-04-20T03:52:44.169Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f0c5d374186bcc8f", + "takenUntil": "2018-04-20T04:56:27.056Z", + "scheduled": "2018-04-20T04:33:54.045Z", + "started": "2018-04-20T04:36:27.133Z", + "resolved": "2018-04-20T04:48:17.767Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.46f6f13f597c023b9fb0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:44.169Z", + "deadline": "2018-04-21T03:52:44.169Z", + "expires": "2019-04-20T03:52:44.169Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.46f6f13f597c023b9fb0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:44.169Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:44.169Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:44.169Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/opt-web-platform-tests-reftests-e10s-6" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-web-platform-tests-reftests-e10s-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "Wr6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C3Y3UqFFTXaIiidfcU2YAg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:42.191Z", + "expires": "2019-04-20T03:52:42.191Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e537942828adf507", + "takenUntil": "2018-04-20T05:31:22.675Z", + "scheduled": "2018-04-20T05:07:48.444Z", + "started": "2018-04-20T05:11:22.756Z", + "resolved": "2018-04-20T05:25:27.416Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:42.191Z", + "deadline": "2018-04-21T03:52:42.191Z", + "expires": "2019-04-20T03:52:42.191Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:42.191Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:42.191Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-mochitest-media-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/opt-mochitest-media-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "C5UUpzEZRPiZd2eQFrk1IQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.175Z", + "expires": "2019-04-20T03:53:10.175Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-001d3c8494922b7d9", + "takenUntil": "2018-04-20T05:27:31.998Z", + "scheduled": "2018-04-20T04:50:48.406Z", + "started": "2018-04-20T04:52:07.542Z", + "resolved": "2018-04-20T05:15:30.959Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.6aaf8a9d02dd01633a57" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.175Z", + "deadline": "2018-04-21T03:53:10.175Z", + "expires": "2019-04-20T03:53:10.175Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.6aaf8a9d02dd01633a57", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:10.175Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:10.175Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:10.175Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--jittest-suite=jittest-chunked", + "--code-coverage", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "JIT Test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-jittest-2" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-jittest-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "suite": { + "flavor": "jittest-chunked", + "name": "jittest" + }, + "treeherder": { + "machine": { + "platform": "linux64-ccov" + }, + "tier": 2, + "symbol": "Jit2", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C668cNZlQ8aZLUFZimD2YA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.608Z", + "expires": "2019-04-20T03:52:56.608Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-014219d0036aae1c3", + "takenUntil": "2018-04-20T05:08:42.651Z", + "scheduled": "2018-04-20T04:30:28.485Z", + "started": "2018-04-20T04:33:18.975Z", + "resolved": "2018-04-20T04:59:27.115Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5b12f1fcdad4a38b5a57" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.608Z", + "deadline": "2018-04-21T03:52:56.608Z", + "expires": "2019-04-20T03:52:56.608Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5b12f1fcdad4a38b5a57", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:56.608Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:56.608Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:56.608Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=2" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "C6KuMi_PQ6uLaLxUefDtjQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:46.295Z", + "expires": "2019-04-20T03:52:46.295Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0dd71284541c10892", + "takenUntil": "2018-04-20T05:51:17.992Z", + "scheduled": "2018-04-20T04:29:33.798Z", + "started": "2018-04-20T04:29:43.804Z", + "resolved": "2018-04-20T05:34:04.531Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.bc2e7790bf94313253b3" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:46.295Z", + "deadline": "2018-04-21T03:52:46.295Z", + "expires": "2019-04-20T03:52:46.295Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.bc2e7790bf94313253b3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:46.295Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:46.295Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:46.295Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-2" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C7g6Bk8-RYG0-JepKolDkA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:34.281Z", + "expires": "2019-04-20T03:52:34.281Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ceefbbd680c1ffb7", + "takenUntil": "2018-04-20T05:29:47.830Z", + "scheduled": "2018-04-20T04:37:45.429Z", + "started": "2018-04-20T04:39:00.728Z", + "resolved": "2018-04-20T05:23:50.299Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e0a58c05009e8dce4b9c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:34.281Z", + "deadline": "2018-04-21T03:52:34.281Z", + "expires": "2019-04-20T03:52:34.281Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e0a58c05009e8dce4b9c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:34.281Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:34.281Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:34.281Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=54", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-54" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-54", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 54, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R54" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CAlgJ0auSAu2nQQlBVAjsg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:55.234Z", + "expires": "2019-04-20T03:52:55.234Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-05863eae886d93dca", + "takenUntil": "2018-04-20T05:45:46.438Z", + "scheduled": "2018-04-20T05:08:44.379Z", + "started": "2018-04-20T05:08:45.096Z", + "resolved": "2018-04-20T05:27:59.777Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:55.234Z", + "deadline": "2018-04-21T03:52:55.234Z", + "expires": "2019-04-20T03:52:55.234Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:55.234Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:55.234Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/opt-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CBxy_ROgTACvyi1twd5Oxw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:34.279Z", + "expires": "2019-04-20T03:52:34.279Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-027a8d057d0a2b3dc", + "takenUntil": "2018-04-20T06:07:49.290Z", + "scheduled": "2018-04-20T05:11:42.599Z", + "started": "2018-04-20T05:13:47.901Z", + "resolved": "2018-04-20T06:03:57.933Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:34.279Z", + "deadline": "2018-04-21T03:52:34.279Z", + "expires": "2019-04-20T03:52:34.279Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:34.279Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:34.279Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=jsreftest --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=jsreftest --code-coverage --e10s --total-chunk=5 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "JS Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-jsreftest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-ccov/debug-jsreftest-e10s-3", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "jsreftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "J3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CCjaCv5DRYWHRX7cRLdvfg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:39.871Z", + "expires": "2019-04-20T03:52:39.871Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b3690637cb7b6558", + "takenUntil": "2018-04-20T05:06:12.108Z", + "scheduled": "2018-04-20T04:29:33.812Z", + "started": "2018-04-20T04:30:48.840Z", + "resolved": "2018-04-20T04:48:57.931Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.962143345ba5b9d2dca1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:39.871Z", + "deadline": "2018-04-21T03:52:39.871Z", + "expires": "2019-04-20T03:52:39.871Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.962143345ba5b9d2dca1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:39.871Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:39.871Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:39.871Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-reftest-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/debug-reftest-e10s-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CEV77aDSSQCbSuI3LR1ZHQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:10.968Z", + "expires": "2019-04-20T03:53:10.968Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-045b2f983be0dbdd8", + "takenUntil": "2018-04-20T05:00:50.270Z", + "scheduled": "2018-04-20T04:25:26.330Z", + "started": "2018-04-20T04:25:27.051Z", + "resolved": "2018-04-20T04:54:17.789Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e6f6fd4c63afe65aaef1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:10.968Z", + "deadline": "2018-04-21T03:53:10.968Z", + "expires": "2019-04-20T03:53:10.968Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e6f6fd4c63afe65aaef1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:10.968Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:10.968Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:10.968Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-reftest-no-accel-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-reftest-no-accel-e10s-5", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CG3CjFs4QLCZECOxKDsVJg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:39.714Z", + "expires": "2019-04-20T03:52:39.714Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-067d781ae8c16dd9a", + "takenUntil": "2018-04-20T05:08:49.146Z", + "scheduled": "2018-04-20T04:18:00.358Z", + "started": "2018-04-20T04:18:02.139Z", + "resolved": "2018-04-20T04:52:48.523Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.220cad5b20cc53605e90" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:39.714Z", + "deadline": "2018-04-21T03:52:39.714Z", + "expires": "2019-04-20T03:52:39.714Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.220cad5b20cc53605e90", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:39.714Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:39.714Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:39.714Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-3", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CIKC7-zZTo-pVit1hsd3UA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.961Z", + "expires": "2019-04-20T03:53:08.961Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-162", + "takenUntil": "2018-04-20T07:56:10.085Z", + "scheduled": "2018-04-20T07:19:08.970Z", + "started": "2018-04-20T07:19:09.390Z", + "resolved": "2018-04-20T07:44:04.339Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.961Z", + "deadline": "2018-04-21T03:53:08.961Z", + "expires": "2019-04-20T03:53:08.961Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:08.961Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:08.961Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=4 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-reftest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/debug-reftest-e10s-3", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CKJyOUk4QfOyLDob9q8tcA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:09.862Z", + "expires": "2019-04-20T03:53:09.862Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a8064c4a4e9a0296", + "takenUntil": "2018-04-20T05:07:34.399Z", + "scheduled": "2018-04-20T04:29:33.792Z", + "started": "2018-04-20T04:31:59.207Z", + "resolved": "2018-04-20T04:57:48.211Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.26504966bac5895dac9a" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:09.862Z", + "deadline": "2018-04-21T03:53:09.862Z", + "expires": "2019-04-20T03:53:09.862Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.26504966bac5895dac9a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:09.862Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:09.862Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:09.862Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-9" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-9", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h9" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CKXVw9iRRkC45pzjhWAxoQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.211Z", + "expires": "2019-04-20T03:52:53.211Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0e22575cce7341986", + "takenUntil": "2018-04-20T05:12:24.778Z", + "scheduled": "2018-04-20T04:36:17.372Z", + "started": "2018-04-20T04:37:01.171Z", + "resolved": "2018-04-20T04:57:48.479Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YA6cnEBxSbaBIQWf355S8w", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f01152f3fd402a84c7df" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.211Z", + "deadline": "2018-04-21T03:52:53.211Z", + "expires": "2019-04-20T03:52:53.211Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f01152f3fd402a84c7df", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:53.211Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:53.211Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:53.211Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-coverage", + "--jsd-code-coverage", + "--e10s", + "--total-chunk=7", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-jsdcov/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-coverage", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-jsdcov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CLXPz4LhQDiySaJwgqgSfw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.328Z", + "expires": "2019-04-20T03:53:01.328Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01827d42d099ff8e6", + "takenUntil": "2018-04-20T06:00:58.647Z", + "scheduled": "2018-04-20T05:04:27.376Z", + "started": "2018-04-20T05:06:54.951Z", + "resolved": "2018-04-20T05:45:28.899Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.328Z", + "deadline": "2018-04-21T03:53:01.328Z", + "expires": "2019-04-20T03:53:01.328Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:01.328Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:01.328Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=4 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-reftest-gpu-e10s-4", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Rg4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CM7BKxO3TByC3Ne2qngnww", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.323Z", + "expires": "2019-04-20T03:53:01.323Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-015", + "takenUntil": "2018-04-20T05:12:35.334Z", + "scheduled": "2018-04-20T04:33:54.016Z", + "started": "2018-04-20T04:34:32.425Z", + "resolved": "2018-04-20T04:54:16.950Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.83f95bd99f06088b42c4" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.323Z", + "deadline": "2018-04-21T03:53:01.323Z", + "expires": "2019-04-20T03:53:01.323Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T03:53:01.323Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T03:53:01.323Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T03:53:01.323Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 2100, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--suite=dromaeojs-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/mozilla-central/raw-file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos dromaeojs ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-talos-dromaeojs-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-dromaeojs-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "d" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CMNzwNDnRiut2n8nPHpjZA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:54.818Z", + "expires": "2019-04-20T03:52:54.818Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-042d94bfee0418d39", + "takenUntil": "2018-04-20T05:27:02.036Z", + "scheduled": "2018-04-20T04:33:53.994Z", + "started": "2018-04-20T04:36:14.785Z", + "resolved": "2018-04-20T05:14:02.158Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.0ebd69bf846f45029799" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:54.818Z", + "deadline": "2018-04-21T03:52:54.818Z", + "expires": "2019-04-20T03:52:54.818Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.0ebd69bf846f45029799", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:54.818Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:54.818Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:54.818Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/opt-web-platform-tests-e10s-10" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-web-platform-tests-e10s-10" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt10" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CMQ8AQxhQUq14_-2mEb0MA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.832Z", + "expires": "2019-04-20T03:53:02.832Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-037226436a9744569", + "takenUntil": "2018-04-20T05:31:11.733Z", + "scheduled": "2018-04-20T05:07:48.417Z", + "started": "2018-04-20T05:11:11.815Z", + "resolved": "2018-04-20T05:21:14.095Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.832Z", + "deadline": "2018-04-21T03:53:02.832Z", + "expires": "2019-04-20T03:53:02.832Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:02.832Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:02.832Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-marionette-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "windows7-32" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CMjQ5BCGRC-rDQStAkIjJQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:40.373Z", + "expires": "2019-04-20T03:52:40.373Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-452", + "takenUntil": "2018-04-20T04:51:37.979Z", + "scheduled": "2018-04-20T04:31:37.475Z", + "started": "2018-04-20T04:31:38.057Z", + "resolved": "2018-04-20T04:41:38.851Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "XGslPMxKRwu3YRffWaPJfg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.20dbeb6b2ddf9a530af7" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:40.373Z", + "deadline": "2018-04-21T03:52:40.373Z", + "expires": "2019-04-20T03:52:40.373Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.20dbeb6b2ddf9a530af7", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:40.373Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:40.373Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1200, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/talos_script.py", + "--cfg", + "mozharness/configs/talos/mac_config.py", + "--suite=chromez-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--suite=chromez-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "XGslPMxKRwu3YRffWaPJfg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos chrome ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/opt-talos-chrome-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-talos-chrome-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "c" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CO-7ywLoTbSvxnKhhzFGuw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.272Z", + "expires": "2019-04-20T03:52:49.272Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0674b889721281f6c", + "takenUntil": "2018-04-20T05:16:13.683Z", + "scheduled": "2018-04-20T04:25:26.307Z", + "started": "2018-04-20T04:25:26.983Z", + "resolved": "2018-04-20T04:59:58.637Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.32d4fa6766a37ce4df05" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.272Z", + "deadline": "2018-04-21T03:52:49.272Z", + "expires": "2019-04-20T03:52:49.272Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.32d4fa6766a37ce4df05", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.272Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.272Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.272Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-e10s-9" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-e10s-9", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 9, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "9" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CO2MR7o3SnWk3hnI_6r-hA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:35.253Z", + "expires": "2019-04-20T03:52:35.253Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-174", + "takenUntil": "2018-04-20T06:22:48.922Z", + "scheduled": "2018-04-20T05:11:42.615Z", + "started": "2018-04-20T05:11:44.321Z", + "resolved": "2018-04-20T06:11:38.676Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:35.253Z", + "deadline": "2018-04-21T03:52:35.253Z", + "expires": "2019-04-20T03:52:35.253Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:35.253Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:35.253Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --code-coverage --e10s --total-chunk=6 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-reftest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-ccov/debug-reftest-e10s-1", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 6 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "R1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CR4v5qMmQ0uoWeeLlchTOQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:53.200Z", + "expires": "2019-04-20T03:52:53.200Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-01290cd47ad3c7047", + "takenUntil": "2018-04-20T05:31:10.868Z", + "scheduled": "2018-04-20T05:07:48.410Z", + "started": "2018-04-20T05:11:10.949Z", + "resolved": "2018-04-20T05:24:05.054Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "E-RzK4SNTyOWbDe2dPEu_A" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:53.200Z", + "deadline": "2018-04-21T03:52:53.200Z", + "expires": "2019-04-20T03:52:53.200Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:53.200Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:53.200Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "E-RzK4SNTyOWbDe2dPEu_A", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/opt-web-platform-tests-e10s-2" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-web-platform-tests-e10s-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CSD60W-STUiHXwD3UeRKRg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.398Z", + "expires": "2019-04-20T03:53:02.398Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d7af3a3881f9e3aa", + "takenUntil": "2018-04-20T05:05:58.082Z", + "scheduled": "2018-04-20T04:30:28.387Z", + "started": "2018-04-20T04:30:34.394Z", + "resolved": "2018-04-20T04:50:21.257Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e9aa536b4788f3c9909b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.398Z", + "deadline": "2018-04-21T03:53:02.398Z", + "expires": "2019-04-20T03:53:02.398Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e9aa536b4788f3c9909b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:02.398Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:02.398Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:02.398Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=5" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CSJJh2NxRgSK_v212xMkew", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:40.409Z", + "expires": "2019-04-20T03:52:40.409Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-02dc6abb9c46be481", + "takenUntil": "2018-04-20T06:03:20.913Z", + "scheduled": "2018-04-20T05:43:20.599Z", + "started": "2018-04-20T05:43:20.994Z", + "resolved": "2018-04-20T05:53:14.305Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:40.409Z", + "deadline": "2018-04-21T03:52:40.409Z", + "expires": "2019-04-20T03:52:40.409Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:40.409Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:40.409Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CT0mt0O_TGuf6UdwOEhy6A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:52.560Z", + "expires": "2019-04-20T03:52:52.560Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-033ddfcec3007a9dc", + "takenUntil": "2018-04-20T05:24:11.613Z", + "scheduled": "2018-04-20T04:18:00.316Z", + "started": "2018-04-20T04:18:00.988Z", + "resolved": "2018-04-20T05:09:09.516Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e1151bafc73ced16b291" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:52.560Z", + "deadline": "2018-04-21T03:52:52.560Z", + "expires": "2019-04-20T03:52:52.560Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e1151bafc73ced16b291", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:52.560Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:52.560Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:52.560Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=24", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 24 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CUHo6F_eS8OFpg0K-6-MpA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.907Z", + "expires": "2019-04-20T03:52:49.907Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0a59dfb3951958a17", + "takenUntil": "2018-04-20T05:08:40.877Z", + "scheduled": "2018-04-20T04:30:28.350Z", + "started": "2018-04-20T04:33:17.252Z", + "resolved": "2018-04-20T04:51:21.304Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.c4425638db53870379ff" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.907Z", + "deadline": "2018-04-21T03:52:49.907Z", + "expires": "2019-04-20T03:52:49.907Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c4425638db53870379ff", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.907Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.907Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.907Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CUwkKjNXQOaQHRbB-mU-Tw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:31.700Z", + "expires": "2019-04-20T03:52:31.700Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0de7c9cf25d311aec", + "takenUntil": "2018-04-20T04:30:55.151Z", + "scheduled": "2018-04-20T03:53:53.928Z", + "started": "2018-04-20T03:55:31.850Z", + "resolved": "2018-04-20T04:19:50.893Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "GImkJZEnRLOYE8NMlFUDTQ", + "JE5PzNT_QJyUAPAUH3YI0g", + "OWMKem5GSeeYEfwcgoqEZw", + "U-XQGxP7QEyJte4Iy0rCxA", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "Y7tyhei2TIGK_8N7kyWeaA", + "RS0UwZahQ_qAcdZzEb_Y9g" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-central.latest.mobile.android-api-16-without-google-play-services-opt", + "index.gecko.v2.mozilla-central.pushdate.2018.04.20.20180420034833.mobile.android-api-16-without-google-play-services-opt", + "index.gecko.v2.mozilla-central.pushlog-id.33873.mobile.android-api-16-without-google-play-services-opt", + "index.gecko.v2.mozilla-central.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.mobile.android-api-16-without-google-play-services-opt", + "index.gecko.v2.trunk.revision.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.mobile.android-api-16-without-google-play-services-opt", + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:31.700Z", + "deadline": "2018-04-21T03:52:31.700Z", + "expires": "2019-04-20T03:52:31.700Z", + "scopes": [ + "queue:get-artifact:project/gecko/android-ndk/*", + "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-mozilla-central-build-android-api-16-without-google-play-services-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "JE5PzNT_QJyUAPAUH3YI0g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-build-android-api-16-without-google-play-services-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/android/R": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "expires": "2019-04-20T03:52:31.700Z", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/geckoview_example-withGeckoBinaries.apk", + "expires": "2019-04-20T03:52:31.700Z", + "type": "file" + }, + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:31.700Z", + "type": "directory" + }, + "public/android/maven": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "expires": "2019-04-20T03:52:31.700Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-central", + "MOZ_BUILD_DATE": "20180420034833", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@Y7tyhei2TIGK_8N7kyWeaA project/gecko/android-ndk/android-ndk.tar.xz@OWMKem5GSeeYEfwcgoqEZw project/gecko/android-sdk/android-sdk-linux.tar.xz@U-XQGxP7QEyJte4Iy0rCxA public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@GImkJZEnRLOYE8NMlFUDTQ public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "PERFHERDER_EXTRA_OPTIONS": "android-api-16-without-google-play-services", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16-without-google-play-services", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build", + "description": "Android 4.0 api-16+ (without Google Play Services) Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-android-api-16-without-google-play-services/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-android-api-16-without-google-play-services/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "tier": 1, + "symbol": "BnoGPS", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "JE5PzNT_QJyUAPAUH3YI0g" + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "CWjnXkKgQW6liQKEoIbaZQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:59.836Z", + "expires": "2019-04-20T03:52:59.836Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-07cbe4526520e15c6", + "takenUntil": "2018-04-20T05:00:54.465Z", + "scheduled": "2018-04-20T04:25:26.786Z", + "started": "2018-04-20T04:25:30.907Z", + "resolved": "2018-04-20T04:47:12.482Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.aa189c6e41840fc79aa0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:59.836Z", + "deadline": "2018-04-21T03:52:59.836Z", + "expires": "2019-04-20T03:52:59.836Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.aa189c6e41840fc79aa0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:59.836Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:59.836Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:59.836Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CXU_UtNFSzKj4YtLG1BGlg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.406Z", + "expires": "2019-04-20T03:52:43.406Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0d894f79e0f632725", + "takenUntil": "2018-04-20T05:08:48.808Z", + "scheduled": "2018-04-20T04:18:00.344Z", + "started": "2018-04-20T04:18:01.872Z", + "resolved": "2018-04-20T04:49:25.948Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.59706a2dedc1b624db6f" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.406Z", + "deadline": "2018-04-21T03:52:43.406Z", + "expires": "2019-04-20T03:52:43.406Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.59706a2dedc1b624db6f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:43.406Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:43.406Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:43.406Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=24", + "--this-chunk=16", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-16" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-16", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 16, + "total": 24 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "16" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CXr8-u7YRayx7dxttfoebw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.472Z", + "expires": "2019-04-20T03:53:08.472Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-03daee659f6ed54eb", + "takenUntil": "2018-04-20T06:24:10.981Z", + "scheduled": "2018-04-20T05:11:42.602Z", + "started": "2018-04-20T05:13:07.256Z", + "resolved": "2018-04-20T06:11:07.162Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.472Z", + "deadline": "2018-04-21T03:53:08.472Z", + "expires": "2019-04-20T03:53:08.472Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:08.472Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:08.472Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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 --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --code-coverage --e10s --total-chunk=7 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-ccov/debug-mochitest-browser-chrome-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "bc6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CZRAm8S8RhW1udKQT6vBiQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:14.166Z", + "expires": "2019-04-20T03:53:14.166Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f2c65838ab86396c", + "takenUntil": "2018-04-20T05:55:23.594Z", + "scheduled": "2018-04-20T05:17:56.992Z", + "started": "2018-04-20T05:18:22.851Z", + "resolved": "2018-04-20T05:38:24.185Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FIMjBcarS_6k3CSt9IMRSQ", + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:14.166Z", + "deadline": "2018-04-21T03:53:14.166Z", + "expires": "2019-04-20T03:53:14.166Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:14.166Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:14.166Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --xpcshell-suite=xpcshell --code-coverage --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FIMjBcarS_6k3CSt9IMRSQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell --code-coverage --total-chunk=8 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-xpcshell-3" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-xpcshell-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CZaHM5frQbu87Ll02-XpCw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:05.209Z", + "expires": "2019-04-20T03:53:05.209Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-05dce46f85c0b3202", + "takenUntil": "2018-04-20T05:08:50.921Z", + "scheduled": "2018-04-20T04:30:28.748Z", + "started": "2018-04-20T04:33:27.687Z", + "resolved": "2018-04-20T05:04:10.001Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.fce3edb3c57e17652957" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:05.209Z", + "deadline": "2018-04-21T03:53:05.209Z", + "expires": "2019-04-20T03:53:05.209Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fce3edb3c57e17652957", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:05.209Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:05.209Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:05.209Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=10", + "--this-chunk=3" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CZwH0rlYRp24mDKwTosLIQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.762Z", + "expires": "2019-04-20T03:52:51.762Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d2b301a877f41a96", + "takenUntil": "2018-04-20T06:20:21.765Z", + "scheduled": "2018-04-20T05:43:20.755Z", + "started": "2018-04-20T05:43:21.221Z", + "resolved": "2018-04-20T06:11:04.099Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.762Z", + "deadline": "2018-04-21T03:52:51.762Z", + "expires": "2019-04-20T03:52:51.762Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:51.762Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:51.762Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-media --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-mochitest-media-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-media-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "C_yS_qecRH-YpYnKj1jzFg", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.970Z", + "expires": "2019-04-20T03:52:56.970Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker4", + "takenUntil": "2018-04-20T05:28:45.207Z", + "scheduled": "2018-04-20T05:08:44.388Z", + "started": "2018-04-20T05:08:45.296Z", + "resolved": "2018-04-20T05:10:53.801Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BO4C5G3zTAah0KCjGpgNEQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.970Z", + "deadline": "2018-04-21T03:52:56.970Z", + "expires": "2019-04-20T03:52:56.970Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "BO4C5G3zTAah0KCjGpgNEQ", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win64/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "build-signing-win64/opt" + }, + "tags": { + "createdForUser": "csabou@mozilla.com", + "kind": "build-signing", + "label": "build-signing-win64/opt" + }, + "extra": { + "index": { + "rank": 1524196113 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g" + } + } + }, + { + "status": { + "taskId": "CaNLNmFxRJ-jppfBQ9qROA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:47.995Z", + "expires": "2019-04-20T03:52:47.995Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-075c92215d172dc7f", + "takenUntil": "2018-04-20T05:11:17.592Z", + "scheduled": "2018-04-20T04:33:54.321Z", + "started": "2018-04-20T04:35:54.021Z", + "resolved": "2018-04-20T04:56:10.855Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.aef6eedf0f84bb7dc9d1" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:47.995Z", + "deadline": "2018-04-21T03:52:47.995Z", + "expires": "2019-04-20T03:52:47.995Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.aef6eedf0f84bb7dc9d1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:47.995Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:47.995Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:47.995Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/opt-reftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-qr/opt-reftest-e10s-2", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Cbz8xMZbQMi14LxXZElt5A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:36.803Z", + "expires": "2019-04-20T03:52:36.803Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d9c8b536ebbc3c42", + "takenUntil": "2018-04-20T05:41:29.774Z", + "scheduled": "2018-04-20T05:04:27.459Z", + "started": "2018-04-20T05:04:28.588Z", + "resolved": "2018-04-20T05:24:25.215Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "UUE-yeY9S9-kXPz9KZkmJg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:36.803Z", + "deadline": "2018-04-21T03:52:36.803Z", + "expires": "2019-04-20T03:52:36.803Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:36.803Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:36.803Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --total-chunk=3 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UUE-yeY9S9-kXPz9KZkmJg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32/debug-mochitest-media-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows7-32/debug-mochitest-media-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Cdq6cy4TSK6PlkY0Z25Ceg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:11.513Z", + "expires": "2019-04-20T03:53:11.513Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ba777f439b8bb0d6", + "takenUntil": "2018-04-20T05:23:24.109Z", + "scheduled": "2018-04-20T04:29:33.844Z", + "started": "2018-04-20T04:32:37.542Z", + "resolved": "2018-04-20T05:03:32.218Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.adab3eda6201d636c1f0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:11.513Z", + "deadline": "2018-04-21T03:53:11.513Z", + "expires": "2019-04-20T03:53:11.513Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.adab3eda6201d636c1f0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:11.513Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:11.513Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:11.513Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--enable-webrender", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-qr/debug-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Xpcshell tests", + "tier": 2, + "symbol": "X6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Ce5YvENoRiCNcmeQkTEM9g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:58.662Z", + "expires": "2019-04-20T03:52:58.662Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d486a00cccb553ca", + "takenUntil": "2018-04-20T08:13:10.586Z", + "scheduled": "2018-04-20T07:19:08.966Z", + "started": "2018-04-20T07:19:09.644Z", + "resolved": "2018-04-20T08:07:07.531Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:58.662Z", + "deadline": "2018-04-21T03:52:58.662Z", + "expires": "2019-04-20T03:52:58.662Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:58.662Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:58.662Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-3" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CfYK9SKzTYWpyaVYVlof7g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:01.020Z", + "expires": "2019-04-20T03:53:01.020Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-04a7c6fd9f3735676", + "takenUntil": "2018-04-20T05:24:30.157Z", + "scheduled": "2018-04-20T05:04:29.722Z", + "started": "2018-04-20T05:04:30.238Z", + "resolved": "2018-04-20T05:18:07.730Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Kjp4wLciRBiyPUsKAEvaNA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.5d4febd6c9c41a0ca2e6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:01.020Z", + "deadline": "2018-04-21T03:53:01.020Z", + "expires": "2019-04-20T03:53:01.020Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.5d4febd6c9c41a0ca2e6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:01.020Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:01.020Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:01.020Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-pgo/opt-web-platform-tests-e10s-12" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-web-platform-tests-e10s-12" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt12" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CgWquy9jSJK3Y54JVey6qw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.016Z", + "expires": "2019-04-20T03:52:56.016Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-08ddf8dd4d536201c", + "takenUntil": "2018-04-20T05:55:58.184Z", + "scheduled": "2018-04-20T04:33:54.374Z", + "started": "2018-04-20T04:34:23.746Z", + "resolved": "2018-04-20T05:38:42.810Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.4426b264de83a555d781" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.016Z", + "deadline": "2018-04-21T03:52:56.016Z", + "expires": "2019-04-20T03:52:56.016Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.4426b264de83a555d781", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:56.016Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:56.016Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:56.016Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--single-stylo-traversal", + "--e10s", + "--single-stylo-traversal", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "awsy/linux_config.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "awsy_script.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Are we slim yet for Stylo sequential ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-stylo-sequential/opt-awsy-stylo-sequential-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-stylo-sequential/opt-awsy-stylo-sequential-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "SYss-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-stylo-sequential" + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s, Stylo sequential", + "tier": 2, + "symbol": "sy" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "ChOrx_AETzq_D4V7QDiNZA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:48.416Z", + "expires": "2019-04-20T03:52:48.416Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-00fb0f64383b7348f", + "takenUntil": "2018-04-20T05:47:01.188Z", + "scheduled": "2018-04-20T04:37:46.192Z", + "started": "2018-04-20T04:40:50.181Z", + "resolved": "2018-04-20T05:27:29.394Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.c28ca7506c93e24c9529" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:48.416Z", + "deadline": "2018-04-21T03:52:48.416Z", + "expires": "2019-04-20T03:52:48.416Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c28ca7506c93e24c9529", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:48.416Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:48.416Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:48.416Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=13", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-13" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-13", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 13, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "13" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Cie-QWJhS_K9XKRwYYbwuA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.665Z", + "expires": "2019-04-20T03:52:51.665Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-02fc5767e1e7d9f5d", + "takenUntil": "2018-04-20T05:07:29.982Z", + "scheduled": "2018-04-20T04:29:33.813Z", + "started": "2018-04-20T04:32:06.297Z", + "resolved": "2018-04-20T04:50:28.182Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.774183a46cf8206e12a0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.665Z", + "deadline": "2018-04-21T03:52:51.665Z", + "expires": "2019-04-20T03:52:51.665Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.774183a46cf8206e12a0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:51.665Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:51.665Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:51.665Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CixZKtXTSDyJm4Wu7OG6Sw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:36.380Z", + "expires": "2019-04-20T03:52:36.380Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-09019a053b1f947ca", + "takenUntil": "2018-04-20T05:00:50.619Z", + "scheduled": "2018-04-20T04:25:26.494Z", + "started": "2018-04-20T04:25:27.376Z", + "resolved": "2018-04-20T04:45:32.387Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.492a5511973031c8c237" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:36.380Z", + "deadline": "2018-04-21T03:52:36.380Z", + "expires": "2019-04-20T03:52:36.380Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.492a5511973031c8c237", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:36.380Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:36.380Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:36.380Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-webgl-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-webgl-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "gl1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CjUBLZ08RH2w8GlqlKrAcg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.684Z", + "expires": "2019-04-20T03:53:02.684Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0844d72736ba3fc0d", + "takenUntil": "2018-04-20T05:08:54.062Z", + "scheduled": "2018-04-20T04:30:28.751Z", + "started": "2018-04-20T04:33:30.824Z", + "resolved": "2018-04-20T04:53:16.082Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.905cf3e85e27e1495d0d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.684Z", + "deadline": "2018-04-21T03:53:02.684Z", + "expires": "2019-04-20T03:53:02.684Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.905cf3e85e27e1495d0d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:02.684Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:02.684Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:02.684Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-xpcshell-1" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CjXL5nAdQpKiSxujh1xGQQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.358Z", + "expires": "2019-04-20T03:53:08.358Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f6ffbfb895d4a73a", + "takenUntil": "2018-04-20T07:39:09.363Z", + "scheduled": "2018-04-20T07:19:08.927Z", + "started": "2018-04-20T07:19:09.583Z", + "resolved": "2018-04-20T07:33:10.094Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqBLJaRTTrS3CVzQVZ-wug" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.358Z", + "deadline": "2018-04-21T03:53:08.358Z", + "expires": "2019-04-20T03:53:08.358Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:08.358Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:08.358Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=chrome --total-chunk=3 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "ZqBLJaRTTrS3CVzQVZ-wug", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64/debug-mochitest-chrome-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64/debug-mochitest-chrome-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CjiBD7LER525R14uZgss0w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:07.851Z", + "expires": "2019-04-20T03:53:07.851Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0063", + "takenUntil": "2018-04-20T05:04:09.903Z", + "scheduled": "2018-04-20T04:27:09.125Z", + "started": "2018-04-20T04:27:09.519Z", + "resolved": "2018-04-20T04:59:00.596Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.ca867f17c2cb5ad4994b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:07.851Z", + "deadline": "2018-04-21T03:53:07.851Z", + "expires": "2019-04-20T03:53:07.851Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.ca867f17c2cb5ad4994b", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:07.851Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:07.851Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-e10s-4", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Ck0auzWpSPi4MQV4olUGfg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.971Z", + "expires": "2019-04-20T03:52:49.971Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0596de2dd98f7a578", + "takenUntil": "2018-04-20T04:53:24.498Z", + "scheduled": "2018-04-20T04:18:00.302Z", + "started": "2018-04-20T04:18:00.817Z", + "resolved": "2018-04-20T04:36:37.221Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1923418925ae845cf131" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.971Z", + "deadline": "2018-04-21T03:52:49.971Z", + "expires": "2019-04-20T03:52:49.971Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1923418925ae845cf131", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.971Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.971Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.971Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "ClBOL-gfT127q-6CYPmdBw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:11.672Z", + "expires": "2019-04-20T03:53:11.672Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-013a0d7ba7ca94dc4", + "takenUntil": "2018-04-20T05:24:11.896Z", + "scheduled": "2018-04-20T04:18:00.312Z", + "started": "2018-04-20T04:18:00.982Z", + "resolved": "2018-04-20T05:04:22.263Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "SBEOyJmxT1GVfJ41GX45og", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.4d3aabdbbbb0506fc155" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:11.672Z", + "deadline": "2018-04-21T03:53:11.672Z", + "expires": "2019-04-20T03:53:11.672Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.4d3aabdbbbb0506fc155", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:11.672Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:11.672Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:11.672Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-13" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-13", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 13, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R13" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CmrrHdUQQNC0HLt1c5NM7g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.664Z", + "expires": "2019-04-20T03:53:08.664Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0bf9013a4b3483ada", + "takenUntil": "2018-04-20T05:41:35.805Z", + "scheduled": "2018-04-20T04:50:48.223Z", + "started": "2018-04-20T04:50:48.735Z", + "resolved": "2018-04-20T05:26:23.787Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "BBsYbg0iSU6rU0hkeybFWA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.99851021f196effed335" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.664Z", + "deadline": "2018-04-21T03:53:08.664Z", + "expires": "2019-04-20T03:53:08.664Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.99851021f196effed335", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.664Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.664Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.664Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-media", + "--code-coverage", + "--e10s", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-ccov/opt-mochitest-media-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-ccov/opt-mochitest-media-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-ccov" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "mda1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CnMKmbGHSeSC0SwY0_y5yw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:56.781Z", + "expires": "2019-04-20T03:52:56.781Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0937692b4dd9bbf7c", + "takenUntil": "2018-04-20T05:15:49.522Z", + "scheduled": "2018-04-20T04:37:45.543Z", + "started": "2018-04-20T04:40:25.958Z", + "resolved": "2018-04-20T04:55:56.883Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.fec0ecc4169208c9c56d" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:56.781Z", + "deadline": "2018-04-21T03:52:56.781Z", + "expires": "2019-04-20T03:52:56.781Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.fec0ecc4169208c9c56d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:56.781Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:56.781Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:56.781Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=marionette", + "--total-chunk=10", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-marionette-1" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-marionette-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 10 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 2, + "symbol": "Mn1", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Cqd1kcNfTL-40Yf7_tnwfg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:35.623Z", + "expires": "2019-04-20T03:52:35.623Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0571113353fdcfa3d", + "takenUntil": "2018-04-20T05:46:18.262Z", + "scheduled": "2018-04-20T04:37:45.685Z", + "started": "2018-04-20T04:40:07.499Z", + "resolved": "2018-04-20T05:28:13.355Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.6edad79e1274ba8a08c6" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:35.623Z", + "deadline": "2018-04-21T03:52:35.623Z", + "expires": "2019-04-20T03:52:35.623Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.6edad79e1274ba8a08c6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:35.623Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:35.623Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:35.623Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=36", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-36" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-36", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 36, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R36" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Cqkf8EOZT7m5TaGycj2yGw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:02.827Z", + "expires": "2019-04-20T03:53:02.827Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-078afaf5de106c5cd", + "takenUntil": "2018-04-20T05:10:25.315Z", + "scheduled": "2018-04-20T04:30:59.571Z", + "started": "2018-04-20T04:35:01.782Z", + "resolved": "2018-04-20T04:59:58.481Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.1ff63434259840650c9b" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:02.827Z", + "deadline": "2018-04-21T03:53:02.827Z", + "expires": "2019-04-20T03:53:02.827Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.1ff63434259840650c9b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:02.827Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:02.827Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:02.827Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-mochitest-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/opt-mochitest-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "5" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CrHnH8FiQrCJPQroil-PiA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.722Z", + "expires": "2019-04-20T03:52:45.722Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-166", + "takenUntil": "2018-04-20T05:21:10.337Z", + "scheduled": "2018-04-20T04:27:09.302Z", + "started": "2018-04-20T04:27:09.854Z", + "resolved": "2018-04-20T05:11:32.308Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "EbhlduHtRiSuTS1LYJ63hQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a54a5d20294ad541fafa" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.722Z", + "deadline": "2018-04-21T03:52:45.722Z", + "expires": "2019-04-20T03:52:45.722Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a54a5d20294ad541fafa", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:45.722Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:45.722Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-media", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "EbhlduHtRiSuTS1LYJ63hQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-macosx64/debug-mochitest-media-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-macosx64/debug-mochitest-media-e10s", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Ct2Rb7lvSICXPkLCJNMSrA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:08.895Z", + "expires": "2019-04-20T03:53:08.895Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-08dc70619061d7d64", + "takenUntil": "2018-04-20T05:45:26.173Z", + "scheduled": "2018-04-20T04:37:45.460Z", + "started": "2018-04-20T04:39:16.272Z", + "resolved": "2018-04-20T05:26:06.127Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YnqGPks5RdmnwnJjNRl4pA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.c0e600f532db6626a139" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:08.895Z", + "deadline": "2018-04-21T03:53:08.895Z", + "expires": "2019-04-20T03:53:08.895Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.c0e600f532db6626a139", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:08.895Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:08.895Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:08.895Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=56", + "--this-chunk=31", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-android-4.3-arm7-api-16/debug-reftest-31" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-android-4.3-arm7-api-16/debug-reftest-31", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 31, + "total": 56 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R31" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CuD5e8xjTCSXd96KVlF-bA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:42.614Z", + "expires": "2019-04-20T03:52:42.614Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-263", + "takenUntil": "2018-04-20T06:33:54.180Z", + "scheduled": "2018-04-20T05:39:51.242Z", + "started": "2018-04-20T05:39:51.677Z", + "resolved": "2018-04-20T06:19:08.062Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "X0HFDKG7SGq4-y-ncqsizA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:42.614Z", + "deadline": "2018-04-21T03:52:42.614Z", + "expires": "2019-04-20T03:52:42.614Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:42.614Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:42.614Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "X0HFDKG7SGq4-y-ncqsizA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows7-32-pgo/opt-talos-damp-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "damp" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CumnSspDS56m7tb-SK8ZeQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:42.630Z", + "expires": "2019-04-20T03:52:42.630Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-00b0679a02b44f65e", + "takenUntil": "2018-04-20T05:11:18.342Z", + "scheduled": "2018-04-20T04:33:54.319Z", + "started": "2018-04-20T04:35:55.004Z", + "resolved": "2018-04-20T04:58:30.593Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.f22bb121382ca1b60292" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:42.630Z", + "deadline": "2018-04-21T03:52:42.630Z", + "expires": "2019-04-20T03:52:42.630Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f22bb121382ca1b60292", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:42.630Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:42.630Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:42.630Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-mochitest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-mochitest-e10s-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CvZsdb4VQ6SRH5RsnQBLZw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:59.460Z", + "expires": "2019-04-20T03:52:59.460Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-045acf942763937aa", + "takenUntil": "2018-04-20T04:55:28.939Z", + "scheduled": "2018-04-20T04:33:54.370Z", + "started": "2018-04-20T04:35:29.015Z", + "resolved": "2018-04-20T04:50:47.161Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.41dac2aacb69a4b7139c" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:59.460Z", + "deadline": "2018-04-21T03:52:59.460Z", + "expires": "2019-04-20T03:52:59.460Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.41dac2aacb69a4b7139c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:59.460Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:59.460Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:59.460Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest not accelerated run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-reftest-no-accel-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/opt-reftest-no-accel-e10s-1", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "reftest-no-accel", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Ru1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CwWEmFLvQbKGOU9OGj7x2A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:41.564Z", + "expires": "2019-04-20T03:52:41.564Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03d9ce5e504c50ce7", + "takenUntil": "2018-04-20T06:03:21.374Z", + "scheduled": "2018-04-20T05:43:20.795Z", + "started": "2018-04-20T05:43:21.454Z", + "resolved": "2018-04-20T05:51:26.490Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "Plr6cE1vSgafbp0C_RS1Jw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:41.564Z", + "deadline": "2018-04-21T03:52:41.564Z", + "expires": "2019-04-20T03:52:41.564Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:52:41.564Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:52:41.564Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --total-chunk=8 --this-chunk=8" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Plr6cE1vSgafbp0C_RS1Jw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-pgo/opt-mochitest-webgl-e10s-8", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl8" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CxwfsN2oRPmV2YHCgT29dw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:49.934Z", + "expires": "2019-04-20T03:52:49.934Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0d491a6786fa2443e", + "takenUntil": "2018-04-20T04:45:28.217Z", + "scheduled": "2018-04-20T04:25:26.653Z", + "started": "2018-04-20T04:25:28.294Z", + "resolved": "2018-04-20T04:33:11.461Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "QyCO3bZQTXi6a26ka_UbQA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.572e55c4d3ee6f0a4062" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:49.934Z", + "deadline": "2018-04-21T03:52:49.934Z", + "expires": "2019-04-20T03:52:49.934Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.572e55c4d3ee6f0a4062", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:49.934Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:49.934Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:49.934Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/debug-mochitest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/debug-mochitest-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "Cy4IykskRKSHnaA48J1F-Q", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:13.008Z", + "expires": "2019-04-20T03:53:13.008Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-172", + "takenUntil": "2018-04-20T06:22:47.607Z", + "scheduled": "2018-04-20T05:11:42.610Z", + "started": "2018-04-20T05:11:44.319Z", + "resolved": "2018-04-20T06:04:46.531Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "FV2mp-WyTWOQaKtAT8P-WA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:13.008Z", + "deadline": "2018-04-21T03:53:13.008Z", + "expires": "2019-04-20T03:53:13.008Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T03:53:13.008Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T03:53:13.008Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --reftest-suite=reftest --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --code-coverage --e10s --total-chunk=6 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "FV2mp-WyTWOQaKtAT8P-WA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-windows10-64-ccov/debug-reftest-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-windows10-64-ccov/debug-reftest-e10s-6", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "R6" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CyVO-2_9R6mg6S4MSM664w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:43.128Z", + "expires": "2019-04-20T03:52:43.128Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-00417ccea5acfe4ac", + "takenUntil": "2018-04-20T05:07:59.855Z", + "scheduled": "2018-04-20T04:29:33.877Z", + "started": "2018-04-20T04:32:36.137Z", + "resolved": "2018-04-20T05:01:29.251Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "ZqqNtMk9Twmjm5vFnENIjg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a530c921520587d4e9d0" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:43.128Z", + "deadline": "2018-04-21T03:52:43.128Z", + "expires": "2019-04-20T03:52:43.128Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a530c921520587d4e9d0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:43.128Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:43.128Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:43.128Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/debug-reftest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64/debug-reftest-e10s-4", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R4" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CyzPWOEeTWCyF1wUdvvxgw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:53:04.128Z", + "expires": "2019-04-20T03:53:04.128Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-05eae5f3ca1d6c2cb", + "takenUntil": "2018-04-20T05:09:56.119Z", + "scheduled": "2018-04-20T04:33:54.437Z", + "started": "2018-04-20T04:34:32.473Z", + "resolved": "2018-04-20T04:55:26.695Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "YzW4IQznQNK4t-tUb7PNbQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.e4519c0465c8d72e5893" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:53:04.128Z", + "deadline": "2018-04-21T03:53:04.128Z", + "expires": "2019-04-20T03:53:04.128Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e4519c0465c8d72e5893", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:53:04.128Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:53:04.128Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:53:04.128Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64/opt-web-platform-tests-e10s-3" + }, + "tags": { + "os": "linux", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "CzGCaYM3Rp-9RD4bEgB83w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:51.177Z", + "expires": "2019-04-20T03:52:51.177Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0aac31bc81bf9ebfb", + "takenUntil": "2018-04-20T04:54:44.527Z", + "scheduled": "2018-04-20T04:30:59.410Z", + "started": "2018-04-20T04:34:44.604Z", + "resolved": "2018-04-20T04:44:57.225Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "OFYW-87xSDaSPNTzmYuoTQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.a3d8dd0776d00d739676" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:51.177Z", + "deadline": "2018-04-21T03:52:51.177Z", + "expires": "2019-04-20T03:52:51.177Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a3d8dd0776d00d739676", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:51.177Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:51.177Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:51.177Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-gl", + "--e10s", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux32/opt-mochitest-webgl-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux32/opt-mochitest-webgl-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "gl2" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + }, + { + "status": { + "taskId": "D-9FX9D6Sn6NmkYNEr93Fw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "deadline": "2018-04-21T03:52:45.474Z", + "expires": "2019-04-20T03:52:45.474Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f33015ad4925f451", + "takenUntil": "2018-04-20T05:06:10.870Z", + "scheduled": "2018-04-20T04:30:28.714Z", + "started": "2018-04-20T04:30:47.274Z", + "resolved": "2018-04-20T04:49:02.130Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g", + "dependencies": [ + "WXvNRP_STdugeqZijT88zQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.ec3dd3ee2ae4b3a63529a912816a110e925eb2d0.33873", + "coalesce.v1.mozilla-central.93098ac2247ffe8be474" + ], + "priority": "medium", + "retries": 5, + "created": "2018-04-20T03:52:45.474Z", + "deadline": "2018-04-21T03:52:45.474Z", + "expires": "2019-04-20T03:52:45.474Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.93098ac2247ffe8be474", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-central-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T03:52:45.474Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T03:52:45.474Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T03:52:45.474Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/ec3dd3ee2ae4b3a63529a912816a110e925eb2d0/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=ec3dd3ee2ae4b3a63529a912816a110e925eb2d0))", + "name": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "csabou@mozilla.com", + "label": "test-linux64-asan/opt-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt1" + }, + "parent": "RS0UwZahQ_qAcdZzEb_Y9g", + "index": { + "rank": 1524196113 + } + } + } + } + ], + "continuationToken": "1!32!UlMwVXdaYWhRX3FBY2RaekViX1k5Zw--~1!32!RC1JS3BkNjJSZC1vTlVTby1oNmhHZw--" +} \ No newline at end of file diff --git a/events/tests/fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json b/events/tests/fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json new file mode 100644 index 000000000..8e132d49e --- /dev/null +++ b/events/tests/fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json @@ -0,0 +1,29383 @@ +{ + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "tasks": [ + { + "status": { + "taskId": "A7Jpk4kjS12hDp2iVzOcUw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.487Z", + "expires": "2019-04-20T00:09:38.487Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0e40f2a20fc0b1b43", + "takenUntil": "2018-04-20T01:20:59.961Z", + "scheduled": "2018-04-20T00:09:57.630Z", + "started": "2018-04-20T00:09:58.218Z", + "resolved": "2018-04-20T01:02:35.708Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "XXS3C5PBSMOkRBemBRMklQ", + "fg2ZK6YtTFagbUKxImaMGQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-st-an-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-st-an-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-st-an-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.487Z", + "deadline": "2018-04-21T00:09:38.487Z", + "expires": "2019-04-20T00:09:38.487Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@fg2ZK6YtTFagbUKxImaMGQ public/build/rustc.tar.bz2@XXS3C5PBSMOkRBemBRMklQ public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.487Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/static-analysis", + "description": "Win32 Static Analysis Opt (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "static-analysis-win32-st-an/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "A925DGu3RLSislOfn9mlLQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.136Z", + "expires": "2019-04-20T00:09:44.136Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-070", + "takenUntil": "2018-04-20T02:05:01.193Z", + "scheduled": "2018-04-20T01:45:00.858Z", + "started": "2018-04-20T01:45:01.284Z", + "resolved": "2018-04-20T01:56:17.525Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.136Z", + "deadline": "2018-04-21T00:09:44.136Z", + "expires": "2019-04-20T00:09:44.136Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.136Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.136Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-talos-tps-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "AFDi6mcySr-pKyVKlfaqGA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.496Z", + "expires": "2019-04-20T00:09:38.496Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0a6f6898da3fd8c6b", + "takenUntil": "2018-04-20T00:55:31.917Z", + "scheduled": "2018-04-20T00:09:57.628Z", + "started": "2018-04-20T00:20:08.744Z", + "resolved": "2018-04-20T00:41:15.105Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-fuzzing-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-fuzzing-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-fuzzing-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-fuzzing-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-fuzzing-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.496Z", + "deadline": "2018-04-21T00:09:38.496Z", + "expires": "2019-04-20T00:09:38.496Z", + "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-mozilla-inbound-build-linux64-fuzzing-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux64-fuzzing-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.496Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "fuzzing", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "fuzzing-debug", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Fuzzing Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-fuzzing/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-fuzzing/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bf", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "AIE0Q1zhSAufiRNJ5CPYUw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.910Z", + "expires": "2019-04-20T00:09:41.910Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-463", + "takenUntil": "2018-04-20T01:45:38.397Z", + "scheduled": "2018-04-20T00:51:36.934Z", + "started": "2018-04-20T00:51:37.444Z", + "resolved": "2018-04-20T01:35:24.888Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.23ada6291516c17bd9dd" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.910Z", + "deadline": "2018-04-21T00:09:41.910Z", + "expires": "2019-04-20T00:09:41.910Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.23ada6291516c17bd9dd", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:41.910Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:41.910Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--reftest-suite=reftest", + "--e10s", + "--total-chunk=3", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-reftest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-reftest-e10s-1", + "test-type": "reftest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 3 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "ARa3eJV_R7G-ytjtosatHg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.027Z", + "expires": "2019-04-20T00:09:43.027Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ba38f1aafdbf3510", + "takenUntil": "2018-04-20T01:14:33.078Z", + "scheduled": "2018-04-20T00:36:13.579Z", + "started": "2018-04-20T00:39:09.332Z", + "resolved": "2018-04-20T01:07:44.478Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f6640667f4191c8b00af" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.027Z", + "deadline": "2018-04-21T00:09:43.027Z", + "expires": "2019-04-20T00:09:43.027Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f6640667f4191c8b00af", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.027Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.027Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.027Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h15" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "ATgnoc_ST_KkQoUuToqj5w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.561Z", + "expires": "2019-04-20T00:09:38.561Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-05c5670f8bfe02094", + "takenUntil": "2018-04-20T00:55:34.524Z", + "scheduled": "2018-04-20T00:09:57.634Z", + "started": "2018-04-20T00:20:11.274Z", + "resolved": "2018-04-20T00:39:31.490Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "IqxA_nG6QVaBux-I4WXE0A", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-asan-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-asan-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-asan-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.561Z", + "deadline": "2018-04-21T00:09:38.561Z", + "expires": "2019-04-20T00:09:38.561Z", + "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-mozilla-inbound-build-linux64-asan-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-asan-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.561Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@IqxA_nG6QVaBux-I4WXE0A public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "debug asan", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-tc-and-debug", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Debug ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-asan/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-asan/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bd", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "AmdHY0vLRoezCfOp0RleqA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.238Z", + "expires": "2019-04-20T00:09:43.238Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c543aa0a152f61f4", + "takenUntil": "2018-04-20T01:59:02.482Z", + "scheduled": "2018-04-20T01:39:02.160Z", + "started": "2018-04-20T01:39:02.562Z", + "resolved": "2018-04-20T01:55:59.212Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.238Z", + "deadline": "2018-04-21T00:09:43.238Z", + "expires": "2019-04-20T00:09:43.238Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.238Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.238Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "BczBpSwKTGWZv6ChnYVyjg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.043Z", + "expires": "2019-04-20T00:09:43.043Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-03505f84ddbc273f1", + "takenUntil": "2018-04-20T01:14:37.130Z", + "scheduled": "2018-04-20T00:36:13.660Z", + "started": "2018-04-20T00:39:13.479Z", + "resolved": "2018-04-20T00:58:45.674Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.865676786fd009ca052d" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.043Z", + "deadline": "2018-04-21T00:09:43.043Z", + "expires": "2019-04-20T00:09:43.043Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.865676786fd009ca052d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.043Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.043Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.043Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=11", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-e10s-11" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-e10s-11", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 11, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "11" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "BqjlleweQP23GmV6bsV_8Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.045Z", + "expires": "2019-04-20T00:09:44.045Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06e69b8aaf6a490f9", + "takenUntil": "2018-04-20T01:37:34.001Z", + "scheduled": "2018-04-20T00:46:46.150Z", + "started": "2018-04-20T00:46:46.947Z", + "resolved": "2018-04-20T01:20:01.986Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.220cad5b20cc53605e90" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.045Z", + "deadline": "2018-04-21T00:09:44.045Z", + "expires": "2019-04-20T00:09:44.045Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.220cad5b20cc53605e90", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.045Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.045Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.045Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=crashtest", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-crashtest-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-crashtest-3", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "C3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "ByJRSWOYSwG4a_NsJayegw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.205Z", + "expires": "2019-04-20T00:09:42.205Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0bd301f5f294af90a", + "takenUntil": "2018-04-20T01:59:02.557Z", + "scheduled": "2018-04-20T01:39:02.207Z", + "started": "2018-04-20T01:39:02.633Z", + "resolved": "2018-04-20T01:55:25.397Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.205Z", + "deadline": "2018-04-21T00:09:42.205Z", + "expires": "2019-04-20T00:09:42.205Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.205Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.205Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "C1xQVmJbQj2OUt4xL-W8Dg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.887Z", + "expires": "2019-04-20T00:09:41.887Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-08be17849f9f04b07", + "takenUntil": "2018-04-20T02:13:11.502Z", + "scheduled": "2018-04-20T00:36:13.706Z", + "started": "2018-04-20T00:36:14.161Z", + "resolved": "2018-04-20T02:05:46.369Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.e76dd48d16185d7871ce" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.887Z", + "deadline": "2018-04-21T00:09:41.887Z", + "expires": "2019-04-20T00:09:41.887Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.e76dd48d16185d7871ce", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:41.887Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:41.887Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:41.887Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=10", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-10" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-10" + }, + "extra": { + "chunks": { + "current": 10, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt10" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "C7T0zgOLRF2G7UumAVR83g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.150Z", + "expires": "2019-04-20T00:09:43.150Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f79d5387f7bf7159", + "takenUntil": "2018-04-20T01:06:46.679Z", + "scheduled": "2018-04-20T00:46:46.165Z", + "started": "2018-04-20T00:46:46.949Z", + "resolved": "2018-04-20T00:52:44.122Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.8022e85a24140acfefb2" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.150Z", + "deadline": "2018-04-21T00:09:43.150Z", + "expires": "2019-04-20T00:09:43.150Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.8022e85a24140acfefb2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.150Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.150Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.150Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--verify", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-test-verify" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-test-verify" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CEIGlpzaQZa9FRojAAMuog", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.011Z", + "expires": "2019-04-20T00:09:44.011Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03fd62a141ead4056", + "takenUntil": "2018-04-20T01:29:56.302Z", + "scheduled": "2018-04-20T00:36:13.627Z", + "started": "2018-04-20T00:39:09.880Z", + "resolved": "2018-04-20T01:13:22.790Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f15e7b2925bd9814325a" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.011Z", + "deadline": "2018-04-21T00:09:44.011Z", + "expires": "2019-04-20T00:09:44.011Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f15e7b2925bd9814325a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.011Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.011Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.011Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "CG--Zp_LS8Kp8KfPCRORfA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.948Z", + "expires": "2019-04-20T00:09:42.948Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0ed3f0ddcb4a8860a", + "takenUntil": "2018-04-20T02:05:01.226Z", + "scheduled": "2018-04-20T01:45:00.837Z", + "started": "2018-04-20T01:45:01.307Z", + "resolved": "2018-04-20T01:58:26.938Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.948Z", + "deadline": "2018-04-21T00:09:42.948Z", + "expires": "2019-04-20T00:09:42.948Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.948Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.948Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-clipboard-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-clipboard-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "cl" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "CKKtUkYWSxaoZ7dor7lCug", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.182Z", + "expires": "2019-04-20T00:09:43.182Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ab94fa5ad89ed18e", + "takenUntil": "2018-04-20T01:05:43.754Z", + "scheduled": "2018-04-20T00:45:43.277Z", + "started": "2018-04-20T00:45:43.832Z", + "resolved": "2018-04-20T00:52:36.058Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.07d776b0c6816164d433" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.182Z", + "deadline": "2018-04-21T00:09:43.182Z", + "expires": "2019-04-20T00:09:43.182Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.07d776b0c6816164d433", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.182Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.182Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.182Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--verify", + "--e10s" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-test-verify-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "CO56wfVcTHeGo2jOrH2VKA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.873Z", + "expires": "2019-04-20T00:09:40.873Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-246", + "takenUntil": "2018-04-20T01:08:29.664Z", + "scheduled": "2018-04-20T00:48:29.145Z", + "started": "2018-04-20T00:48:29.746Z", + "resolved": "2018-04-20T00:54:20.315Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.e4017c185bd8f59ab8f6" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.873Z", + "deadline": "2018-04-21T00:09:40.873Z", + "expires": "2019-04-20T00:09:40.873Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.e4017c185bd8f59ab8f6", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.873Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.873Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=reftest", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-web-platform-tests-reftests-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-web-platform-tests-reftests-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wr" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "CWbKS_vkRUqhzC_OxT0Fvg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.006Z", + "expires": "2019-04-20T00:09:42.006Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03f1004aa958b066b", + "takenUntil": "2018-04-20T01:37:33.620Z", + "scheduled": "2018-04-20T00:46:46.282Z", + "started": "2018-04-20T00:46:46.948Z", + "resolved": "2018-04-20T01:27:02.105Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.0d8a3ae8927734bee465" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.006Z", + "deadline": "2018-04-21T00:09:42.006Z", + "expires": "2019-04-20T00:09:42.006Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.0d8a3ae8927734bee465", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.006Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.006Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.006Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-chrome-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "CZICuUmfTUuYZlSE4zZcQA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.840Z", + "expires": "2019-04-20T00:09:40.840Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0fccc19d66f992384", + "takenUntil": "2018-04-20T01:59:02.563Z", + "scheduled": "2018-04-20T01:39:02.170Z", + "started": "2018-04-20T01:39:02.640Z", + "resolved": "2018-04-20T01:46:56.817Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.840Z", + "deadline": "2018-04-21T00:09:40.840Z", + "expires": "2019-04-20T00:09:40.840Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.840Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.840Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt7" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "CbLgkeyGTx2Y34ggy4MEVg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.918Z", + "expires": "2019-04-20T00:09:41.918Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-007c656c368bcf014", + "takenUntil": "2018-04-20T02:05:01.221Z", + "scheduled": "2018-04-20T01:45:00.819Z", + "started": "2018-04-20T01:45:01.299Z", + "resolved": "2018-04-20T02:01:12.738Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.918Z", + "deadline": "2018-04-21T00:09:41.918Z", + "expires": "2019-04-20T00:09:41.918Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:41.918Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:41.918Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "ClvumVeDQZa2z0ogD1Zctg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.821Z", + "expires": "2019-04-20T00:09:40.821Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-08b1ffdee86350ac2", + "takenUntil": "2018-04-20T02:16:06.608Z", + "scheduled": "2018-04-20T01:39:02.105Z", + "started": "2018-04-20T01:39:02.582Z", + "resolved": "2018-04-20T02:02:50.625Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.821Z", + "deadline": "2018-04-21T00:09:40.821Z", + "expires": "2019-04-20T00:09:40.821Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.821Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.821Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Cn87se5vRQSGLCc7HAp_Ug", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.896Z", + "expires": "2019-04-20T00:09:40.896Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-428", + "takenUntil": "2018-04-20T01:25:30.175Z", + "scheduled": "2018-04-20T00:48:29.152Z", + "started": "2018-04-20T00:48:29.737Z", + "resolved": "2018-04-20T01:17:24.499Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.5a9663e459eb110fdd2b" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.896Z", + "deadline": "2018-04-21T00:09:40.896Z", + "expires": "2019-04-20T00:09:40.896Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.5a9663e459eb110fdd2b", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.896Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.896Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--test-type=testharness", + "--e10s", + "--total-chunk=5", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-web-platform-tests-e10s-3" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "D4BLEVl_RaGxyVUOyWZDZg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:45.207Z", + "expires": "2019-04-20T00:09:45.207Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-056d5cd2e42ada155", + "takenUntil": "2018-04-20T01:43:30.885Z", + "scheduled": "2018-04-20T01:06:29.855Z", + "started": "2018-04-20T01:06:30.371Z", + "resolved": "2018-04-20T01:32:33.900Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "JKULNW1ETe-xu56i17jF4w", + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:45.207Z", + "deadline": "2018-04-21T00:09:45.207Z", + "expires": "2019-04-20T00:09:45.207Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:45.207Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:45.207Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/JKULNW1ETe-xu56i17jF4w/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/opt-xpcshell" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "DH_wMmYLRBu2shDMHf7Zvw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.500Z", + "expires": "2019-04-20T00:09:38.500Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ace14f60afe01b24", + "takenUntil": "2018-04-20T00:55:29.190Z", + "scheduled": "2018-04-20T00:09:57.631Z", + "started": "2018-04-20T00:20:05.506Z", + "resolved": "2018-04-20T00:41:22.133Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Q4I6ROTUS-OvNrDDMaq_vw", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux-rusttests-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux-rusttests-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux-rusttests-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-rusttests-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-rusttests-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.500Z", + "deadline": "2018-04-21T00:09:38.500Z", + "expires": "2019-04-20T00:09:38.500Z", + "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-mozilla-inbound-build-linux-rusttests-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q4I6ROTUS-OvNrDDMaq_vw" + }, + "cache": { + "level-3-mozilla-inbound-build-linux-rusttests-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.500Z", + "type": "directory" + } + }, + "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": "", + "MOZ_AUTOMATION": "1", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "MH_CUSTOM_BUILD_VARIANT_CFG": "rusttests-debug", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_BUILD_DATE": "20180420000800", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "DIST_UPLOADS": "", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MH_BRANCH": "mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "NEED_XVFB": "true", + "USE_SCCACHE": "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", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux32 Rust tests Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux-rusttests/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux-rusttests/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux32" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "Q4I6ROTUS-OvNrDDMaq_vw" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "DWVrWQEWQ76P4idOFeKWFw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.031Z", + "expires": "2019-04-20T00:09:42.031Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-060", + "takenUntil": "2018-04-20T01:13:46.188Z", + "scheduled": "2018-04-20T00:53:45.215Z", + "started": "2018-04-20T00:53:46.263Z", + "resolved": "2018-04-20T01:00:44.872Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f4c476fd6ba59724e797" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.031Z", + "deadline": "2018-04-21T00:09:42.031Z", + "expires": "2019-04-20T00:09:42.031Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T00:09:42.031Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T00:09:42.031Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.031Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--suite=tps-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/integration/mozilla-inbound/raw-file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-talos-tps-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "DcnzBL8rSquxc_B1DZm87g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.871Z", + "expires": "2019-04-20T00:09:39.871Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0517f59758aa90cbb", + "takenUntil": "2018-04-20T01:21:00.475Z", + "scheduled": "2018-04-20T00:09:57.632Z", + "started": "2018-04-20T00:09:58.221Z", + "resolved": "2018-04-20T01:04:58.226Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.871Z", + "deadline": "2018-04-21T00:09:39.871Z", + "expires": "2019-04-20T00:09:39.871Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:39.871Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win32 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win32/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win32/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "DpiX2wRnQc2O06plI-cBPA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.022Z", + "expires": "2019-04-20T00:09:44.022Z", + "retriesLeft": 4, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "exception", + "reasonCreated": "scheduled", + "reasonResolved": "claim-expired", + "workerGroup": "us-east-1", + "workerId": "i-07fe0bb8ac8c3a573", + "takenUntil": "2018-04-20T01:24:15.462Z", + "scheduled": "2018-04-20T01:04:15.075Z", + "started": "2018-04-20T01:04:15.542Z", + "resolved": "2018-04-20T01:24:17.264Z" + }, + { + "runId": 1, + "state": "completed", + "reasonCreated": "retry", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-057f61f033b427626", + "takenUntil": "2018-04-20T01:44:22.895Z", + "scheduled": "2018-04-20T01:24:17.264Z", + "started": "2018-04-20T01:24:22.975Z", + "resolved": "2018-04-20T01:31:40.129Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.022Z", + "deadline": "2018-04-21T00:09:44.022Z", + "expires": "2019-04-20T00:09:44.022Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.022Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.022Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --enable-webrender --total-chunk=8 --this-chunk=6" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/opt-mochitest-webgl-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/opt-mochitest-webgl-e10s-6", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "DsM9TGHtRHOLYB6XmrEihQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.209Z", + "expires": "2019-04-20T00:09:43.209Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0828baa19a31b1781", + "takenUntil": "2018-04-20T02:05:01.269Z", + "scheduled": "2018-04-20T01:45:00.843Z", + "started": "2018-04-20T01:45:01.353Z", + "resolved": "2018-04-20T01:59:16.354Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.209Z", + "deadline": "2018-04-21T00:09:43.209Z", + "expires": "2019-04-20T00:09:43.209Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.209Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.209Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-4", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "DxXZXv4tRwSz2Cw29aFBOw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.033Z", + "expires": "2019-04-20T00:09:41.033Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-066c1462579ef12c6", + "takenUntil": "2018-04-20T01:11:37.233Z", + "scheduled": "2018-04-20T00:36:13.672Z", + "started": "2018-04-20T00:36:14.082Z", + "resolved": "2018-04-20T00:58:49.623Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.6a28839d9cfa7e0000d0" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.033Z", + "deadline": "2018-04-21T00:09:41.033Z", + "expires": "2019-04-20T00:09:41.033Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.6a28839d9cfa7e0000d0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:41.033Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:41.033Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:41.033Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=6", + "--this-chunk=6", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/debug-web-platform-tests-reftests-e10s-6" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-reftests-e10s-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "Wr6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "E1pCbk1SSsupFk_bbETQ9A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.905Z", + "expires": "2019-04-20T00:09:39.905Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-08e730bfeab2879c1", + "takenUntil": "2018-04-20T01:30:30.081Z", + "scheduled": "2018-04-20T01:10:29.764Z", + "started": "2018-04-20T01:10:30.159Z", + "resolved": "2018-04-20T01:18:25.028Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IcrXF_5iQlOx1RqiZlVxPA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.905Z", + "deadline": "2018-04-21T00:09:39.905Z", + "expires": "2019-04-20T00:09:39.905Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:39.905Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:39.905Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.test_packages.json --download-symbols ondemand --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "IcrXF_5iQlOx1RqiZlVxPA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-asan/opt-test-verify-wpt-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-asan/opt-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 3, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "E5uFVNQ3S8SgKbncxk8PkQ", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.036Z", + "expires": "2019-04-20T00:09:42.036Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker6", + "takenUntil": "2018-04-20T01:27:34.071Z", + "scheduled": "2018-04-20T01:07:33.403Z", + "started": "2018-04-20T01:07:34.157Z", + "resolved": "2018-04-20T01:10:12.101Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.036Z", + "deadline": "2018-04-21T00:09:42.036Z", + "expires": "2019-04-20T00:09:42.036Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win64/debug' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win64/debug" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win64/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "E8CDrxv-RWaX_Zgn_vH74A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.955Z", + "expires": "2019-04-20T00:09:41.955Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-07cfd2f7548826e07", + "takenUntil": "2018-04-20T01:59:02.484Z", + "scheduled": "2018-04-20T01:39:02.131Z", + "started": "2018-04-20T01:39:02.560Z", + "resolved": "2018-04-20T01:48:32.635Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.955Z", + "deadline": "2018-04-21T00:09:41.955Z", + "expires": "2019-04-20T00:09:41.955Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:41.955Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:41.955Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-test-verify-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "windows7-32" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "EFWGM1LYTkeocpdG8U64Kg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.407Z", + "expires": "2019-04-20T00:09:44.407Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0d22bec4f779d86de", + "takenUntil": "2018-04-20T01:17:42.195Z", + "scheduled": "2018-04-20T00:40:03.191Z", + "started": "2018-04-20T00:42:18.661Z", + "resolved": "2018-04-20T01:01:50.092Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.5b84d052d596c6ee301b" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.407Z", + "deadline": "2018-04-21T00:09:44.407Z", + "expires": "2019-04-20T00:09:44.407Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.5b84d052d596c6ee301b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.407Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.407Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.407Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=7", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-7", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "7" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "EK1IdCa4QTWySVqn_lZX4A", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.242Z", + "expires": "2019-04-20T00:09:44.242Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0041", + "takenUntil": "2018-04-20T01:28:37.814Z", + "scheduled": "2018-04-20T00:51:36.772Z", + "started": "2018-04-20T00:51:37.342Z", + "resolved": "2018-04-20T01:09:47.397Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.938f2c08bf05a5c5f782" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.242Z", + "deadline": "2018-04-21T00:09:44.242Z", + "expires": "2019-04-20T00:09:44.242Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.938f2c08bf05a5c5f782", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.242Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.242Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-marionette-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/debug-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "EKIdwfGHSZyGFq8wlyFRgQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.858Z", + "expires": "2019-04-20T00:09:40.858Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0c560c0798d954c9f", + "takenUntil": "2018-04-20T02:18:38.129Z", + "scheduled": "2018-04-20T01:07:33.409Z", + "started": "2018-04-20T01:07:33.934Z", + "resolved": "2018-04-20T01:58:54.420Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.858Z", + "deadline": "2018-04-21T00:09:40.858Z", + "expires": "2019-04-20T00:09:40.858Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.858Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.858Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-3" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "EQbDCT10QomQ_a3H8Q7uow", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.023Z", + "expires": "2019-04-20T00:09:43.023Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-02ec109f8ac44d34c", + "takenUntil": "2018-04-20T01:29:09.341Z", + "scheduled": "2018-04-20T00:53:45.654Z", + "started": "2018-04-20T00:53:46.154Z", + "resolved": "2018-04-20T01:18:14.278Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.63e982746f5802088ded" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.023Z", + "deadline": "2018-04-21T00:09:43.023Z", + "expires": "2019-04-20T00:09:43.023Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.63e982746f5802088ded", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.023Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.023Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.023Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/opt-web-platform-tests-e10s-12" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/opt-web-platform-tests-e10s-12" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt12" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "EdRsAVu0RAe3YoIz3oDSEQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.474Z", + "expires": "2019-04-20T00:09:38.474Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a728d72e22de22a6", + "takenUntil": "2018-04-20T00:55:38.900Z", + "scheduled": "2018-04-20T00:09:57.643Z", + "started": "2018-04-20T00:20:15.496Z", + "resolved": "2018-04-20T00:48:10.311Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "IqxA_nG6QVaBux-I4WXE0A", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-fuzzing-asan-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-fuzzing-asan-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.474Z", + "deadline": "2018-04-21T00:09:38.474Z", + "expires": "2019-04-20T00:09:38.474Z", + "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-mozilla-inbound-build-linux64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-linux64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.474Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@IqxA_nG6QVaBux-I4WXE0A public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "asan-fuzzing", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "fuzzing-asan-tc", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Fuzzing Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-asan-fuzzing/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-asan-fuzzing/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bof", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "EjEmZrfyRe2XYcl14iD3GA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.128Z", + "expires": "2019-04-20T00:09:42.128Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ab0874ad054691c0", + "takenUntil": "2018-04-20T01:16:00.782Z", + "scheduled": "2018-04-20T00:40:37.066Z", + "started": "2018-04-20T00:40:37.945Z", + "resolved": "2018-04-20T01:01:58.733Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "avLx7b66Qjadt3W_Wo-QAg", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.44eb8491eafef973579e" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.128Z", + "deadline": "2018-04-21T00:09:42.128Z", + "expires": "2019-04-20T00:09:42.128Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.44eb8491eafef973579e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.128Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.128Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.128Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/avLx7b66Qjadt3W_Wo-QAg/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/avLx7b66Qjadt3W_Wo-QAg/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=4", + "--this-chunk=3", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/avLx7b66Qjadt3W_Wo-QAg/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidx86.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/avLx7b66Qjadt3W_Wo-QAg/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.2-x86/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.2-x86/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 4 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-2-x86" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "EnLrIIv1R0WZo7qkulRtUQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.855Z", + "expires": "2019-04-20T00:09:40.855Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06c8ab5f9b34efd6c", + "takenUntil": "2018-04-20T01:39:37.909Z", + "scheduled": "2018-04-20T01:02:35.531Z", + "started": "2018-04-20T01:02:35.996Z", + "resolved": "2018-04-20T01:24:25.976Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PlCQdcbpSlOcNnuxkAmZlA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.855Z", + "deadline": "2018-04-21T00:09:40.855Z", + "expires": "2019-04-20T00:09:40.855Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.855Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.855Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32/debug-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "EtDj-ADuTOyonDgYw7l8ug", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.900Z", + "expires": "2019-04-20T00:09:42.900Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-049b02c6b0a6c22cc", + "takenUntil": "2018-04-20T01:21:07.529Z", + "scheduled": "2018-04-20T00:45:43.349Z", + "started": "2018-04-20T00:45:44.276Z", + "resolved": "2018-04-20T01:05:16.540Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.c4425638db53870379ff" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.900Z", + "deadline": "2018-04-21T00:09:42.900Z", + "expires": "2019-04-20T00:09:42.900Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.c4425638db53870379ff", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.900Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.900Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.900Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=3" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-mochitest-chrome-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-asan/opt-mochitest-chrome-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "F5NRML1VSXWbch-_kyh3mw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.931Z", + "expires": "2019-04-20T00:09:44.931Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-09be88931e48d54f4", + "takenUntil": "2018-04-20T01:17:53.157Z", + "scheduled": "2018-04-20T00:40:03.489Z", + "started": "2018-04-20T00:42:29.669Z", + "resolved": "2018-04-20T01:06:54.056Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.c022c0ed769cbed51992" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.931Z", + "deadline": "2018-04-21T00:09:44.931Z", + "expires": "2019-04-20T00:09:44.931Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.c022c0ed769cbed51992", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.931Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.931Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.931Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "F7N0Udk2QyKDGlFpFJFVfg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.875Z", + "expires": "2019-04-20T00:09:40.875Z", + "retriesLeft": 5, + "state": "unscheduled", + "runs": [] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "L-2XxaA-Rv-4zoX4qBwhyA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.653d184651d1619cacee" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.875Z", + "deadline": "2018-04-21T00:09:40.875Z", + "expires": "2019-04-20T00:09:40.875Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.653d184651d1619cacee", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.875Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.875Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.875Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/opt-web-platform-tests-e10s-8" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-web-platform-tests-e10s-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "FF8FuL4NTbKsyv98-uNPDw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.221Z", + "expires": "2019-04-20T00:09:42.221Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-296", + "takenUntil": "2018-04-20T01:41:16.029Z", + "scheduled": "2018-04-20T01:04:15.082Z", + "started": "2018-04-20T01:04:15.668Z", + "resolved": "2018-04-20T01:31:33.522Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.221Z", + "deadline": "2018-04-21T00:09:42.221Z", + "expires": "2019-04-20T00:09:42.221Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.221Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.221Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --enable-webrender --total-chunk=2 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/opt-reftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/opt-reftest-e10s-2", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "R2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "FNFe07GCQpqjnSwpQu7epA", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.995Z", + "expires": "2019-04-20T00:09:41.995Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker1", + "takenUntil": "2018-04-20T01:59:02.653Z", + "scheduled": "2018-04-20T01:39:02.224Z", + "started": "2018-04-20T01:39:02.730Z", + "resolved": "2018-04-20T01:42:16.040Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.995Z", + "deadline": "2018-04-21T00:09:41.995Z", + "expires": "2019-04-20T00:09:41.995Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win32-pgo/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win32-pgo/opt" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win32-pgo/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "FNt-fKkFQ3u9ImnJHwvQqQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.810Z", + "expires": "2019-04-20T00:09:40.810Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-023ee720c19a648e3", + "takenUntil": "2018-04-20T02:16:03.917Z", + "scheduled": "2018-04-20T01:39:02.231Z", + "started": "2018-04-20T01:39:02.647Z", + "resolved": "2018-04-20T02:05:48.297Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.810Z", + "deadline": "2018-04-21T00:09:40.810Z", + "expires": "2019-04-20T00:09:40.810Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.810Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.810Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=8" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-web-platform-tests-e10s-8" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-web-platform-tests-e10s-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "FP3WMB0QSnqXbl-4pNk3Rg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.540Z", + "expires": "2019-04-20T00:09:38.540Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0105a2772fbecb454", + "takenUntil": "2018-04-20T01:21:00.288Z", + "scheduled": "2018-04-20T00:09:57.648Z", + "started": "2018-04-20T00:09:58.217Z", + "resolved": "2018-04-20T01:06:53.478Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "A7tJzqugQTiQTixLfy6JaA", + "Puq7J0iESOuAjkz7mlHTNw", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-st-an-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-st-an-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-st-an-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.540Z", + "deadline": "2018-04-21T00:09:38.540Z", + "expires": "2019-04-20T00:09:38.540Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@A7tJzqugQTiQTixLfy6JaA public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.540Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/static-analysis", + "description": "Win64 Static Analysis Debug (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "static-analysis-win64-st-an/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "FQKxuqDAQA-Tv94sP1JSpQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.057Z", + "expires": "2019-04-20T00:09:42.057Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0065", + "takenUntil": "2018-04-20T01:28:37.843Z", + "scheduled": "2018-04-20T00:51:36.924Z", + "started": "2018-04-20T00:51:37.445Z", + "resolved": "2018-04-20T01:24:26.606Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.2084a6e8f89eccc4619c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.057Z", + "deadline": "2018-04-21T00:09:42.057Z", + "expires": "2019-04-20T00:09:42.057Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.2084a6e8f89eccc4619c", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.057Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.057Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=5" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "FRALf0toRg-lAT8IBXn1yQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.858Z", + "expires": "2019-04-20T00:09:40.858Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-127", + "takenUntil": "2018-04-20T02:22:02.624Z", + "scheduled": "2018-04-20T01:45:00.857Z", + "started": "2018-04-20T01:45:01.271Z", + "resolved": "2018-04-20T02:06:19.573Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.858Z", + "deadline": "2018-04-21T00:09:40.858Z", + "expires": "2019-04-20T00:09:40.858Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.858Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.858Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=reftest --e10s --total-chunk=2 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-reftest-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-reftest-e10s-2", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 2 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "FfGtZsB6Sweo8C3RuY065A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.882Z", + "expires": "2019-04-20T00:09:39.882Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ff44acef4022617d", + "takenUntil": "2018-04-20T00:55:34.141Z", + "scheduled": "2018-04-20T00:09:57.633Z", + "started": "2018-04-20T00:20:10.762Z", + "resolved": "2018-04-20T00:40:02.657Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-st-an-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-st-an-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-st-an-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.882Z", + "deadline": "2018-04-21T00:09:39.882Z", + "expires": "2019-04-20T00:09:39.882Z", + "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-mozilla-inbound-build-linux64-st-an-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-linux64-st-an-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:39.882Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "build", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "DIST_TARGET_UPLOADS": "", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_sub_linux_configs/64_stat_and_opt.py", + "DIST_UPLOADS": "", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/static-analysis", + "description": "Linux64 Opt Static Analysis ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "static-analysis-linux64-st-an/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "static-analysis", + "label": "static-analysis-linux64-st-an/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Ffn8M3exQC6FgT1mcZsf7A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.813Z", + "expires": "2019-04-20T00:09:40.813Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03224a79eae8e250d", + "takenUntil": "2018-04-20T01:45:25.610Z", + "scheduled": "2018-04-20T00:36:13.770Z", + "started": "2018-04-20T00:39:15.607Z", + "resolved": "2018-04-20T01:38:51.208Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.37025879b3687724248c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.813Z", + "deadline": "2018-04-21T00:09:40.813Z", + "expires": "2019-04-20T00:09:40.813Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.37025879b3687724248c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.813Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.813Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.813Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-devtools-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-devtools-chrome-e10s-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Fgc0pDs5SfWFqooO4ZhiTg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.013Z", + "expires": "2019-04-20T00:09:42.013Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-07e422b8f9bd98850", + "takenUntil": "2018-04-20T02:05:01.269Z", + "scheduled": "2018-04-20T01:45:00.868Z", + "started": "2018-04-20T01:45:01.365Z", + "resolved": "2018-04-20T01:58:36.785Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.013Z", + "deadline": "2018-04-21T00:09:42.013Z", + "expires": "2019-04-20T00:09:42.013Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.013Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.013Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=chrome --total-chunk=3 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-chrome-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Fj-dQQzMQ9uGZ32yxqSz4Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.300Z", + "expires": "2019-04-20T00:09:44.300Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-02c9915c56ad13c3a", + "takenUntil": "2018-04-20T01:33:05.143Z", + "scheduled": "2018-04-20T00:40:03.205Z", + "started": "2018-04-20T00:42:19.474Z", + "resolved": "2018-04-20T01:19:08.023Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.ace1e701009f37556069" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.300Z", + "deadline": "2018-04-21T00:09:44.300Z", + "expires": "2019-04-20T00:09:44.300Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.ace1e701009f37556069", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.300Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.300Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.300Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-browser-chrome-e10s-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-browser-chrome-e10s-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc15" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Fr9oIXBgRk69yrDceUPLMQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.477Z", + "expires": "2019-04-20T00:09:38.477Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-026b9658d822b191e", + "takenUntil": "2018-04-20T00:55:44.449Z", + "scheduled": "2018-04-20T00:09:57.654Z", + "started": "2018-04-20T00:20:21.192Z", + "resolved": "2018-04-20T00:45:42.527Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "IqxA_nG6QVaBux-I4WXE0A", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-asan-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.477Z", + "deadline": "2018-04-21T00:09:38.477Z", + "expires": "2019-04-20T00:09:38.477Z", + "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-mozilla-inbound-build-linux64-asan-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux64-asan-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.477Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@IqxA_nG6QVaBux-I4WXE0A public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "opt asan", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-tc", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-asan/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-asan/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bo", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Fvn8q5xQROycl44-Tan-Jg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.870Z", + "expires": "2019-04-20T00:09:43.870Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-08a5d49f5b0671aaa", + "takenUntil": "2018-04-20T01:27:33.807Z", + "scheduled": "2018-04-20T01:07:33.465Z", + "started": "2018-04-20T01:07:33.886Z", + "resolved": "2018-04-20T01:15:36.474Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.870Z", + "deadline": "2018-04-21T00:09:43.870Z", + "expires": "2019-04-20T00:09:43.870Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.870Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.870Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-test-verify-wpt-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 2, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "G4HyexZGQfKWd95EmJadeA", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.128Z", + "expires": "2019-04-20T00:09:42.128Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker2", + "takenUntil": "2018-04-20T02:05:01.267Z", + "scheduled": "2018-04-20T01:45:00.852Z", + "started": "2018-04-20T01:45:01.354Z", + "resolved": "2018-04-20T01:47:11.117Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.128Z", + "deadline": "2018-04-21T00:09:42.128Z", + "expires": "2019-04-20T00:09:42.128Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win64-pgo/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win64-pgo/opt" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win64-pgo/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "G6TMlD-EQhiOaYnEMkJsWQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.022Z", + "expires": "2019-04-20T00:09:42.022Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0e7e87b9bd55ccc39", + "takenUntil": "2018-04-20T01:44:33.188Z", + "scheduled": "2018-04-20T00:53:45.649Z", + "started": "2018-04-20T00:53:46.188Z", + "resolved": "2018-04-20T01:24:36.627Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.3fa00e458f6dc6ff874c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.022Z", + "deadline": "2018-04-21T00:09:42.022Z", + "expires": "2019-04-20T00:09:42.022Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.3fa00e458f6dc6ff874c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.022Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.022Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.022Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=5", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/opt-mochitest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-qr/opt-mochitest-e10s-4", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 4, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "GCQC8SzVRVKUNbgx2KBiIg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.245Z", + "expires": "2019-04-20T00:09:44.245Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c85f731b5eeab6f5", + "takenUntil": "2018-04-20T01:56:39.051Z", + "scheduled": "2018-04-20T01:02:35.488Z", + "started": "2018-04-20T01:02:35.879Z", + "resolved": "2018-04-20T01:42:50.566Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PlCQdcbpSlOcNnuxkAmZlA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.245Z", + "deadline": "2018-04-21T00:09:44.245Z", + "expires": "2019-04-20T00:09:44.245Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.245Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.245Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest-gpu --e10s --total-chunk=4 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest GPU run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32/debug-reftest-gpu-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32/debug-reftest-gpu-e10s-1", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "suite": { + "flavor": "reftest-gpu", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "Rg1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "GFW4XEqCS-Oc7ryPXgKPIQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.821Z", + "expires": "2019-04-20T00:09:44.821Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-09b66ce8fb6e036b1", + "takenUntil": "2018-04-20T01:00:04.141Z", + "scheduled": "2018-04-20T00:40:03.251Z", + "started": "2018-04-20T00:40:04.219Z", + "resolved": "2018-04-20T00:49:00.794Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.1633748947a478d4028e" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.821Z", + "deadline": "2018-04-21T00:09:44.821Z", + "expires": "2019-04-20T00:09:44.821Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.1633748947a478d4028e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.821Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.821Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.821Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--test-type=reftest", + "--allow-software-gl-layers", + "--total-chunk=6", + "--this-chunk=2", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-web-platform-tests-reftests-2" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-reftests-2" + }, + "extra": { + "chunks": { + "current": 2, + "total": 6 + }, + "suite": { + "flavor": "web-platform-tests-reftests", + "name": "web-platform-tests-reftests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests", + "tier": 1, + "symbol": "Wr2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "GdV743-xTDWjJ5pouvnJ2w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.596Z", + "expires": "2019-04-20T00:09:38.596Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-08673f26f42bdf5b4", + "takenUntil": "2018-04-20T01:11:06.977Z", + "scheduled": "2018-04-20T00:09:57.652Z", + "started": "2018-04-20T00:20:19.984Z", + "resolved": "2018-04-20T00:55:12.134Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VdOxLofoQZW8Pyysd2THqQ", + "W8F4pEo0RtGVPGCM_YzLWQ", + "WFQrgPn2RO-jEjfk1-378g", + "aD8ER2TJR-miwww4rU1lKA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-base-toolchains-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-base-toolchains-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.596Z", + "deadline": "2018-04-21T00:09:38.596Z", + "expires": "2019-04-20T00:09:38.596Z", + "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-mozilla-inbound-build-linux64-base-toolchains-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-linux64-base-toolchains-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.596Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VdOxLofoQZW8Pyysd2THqQ public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@WFQrgPn2RO-jEjfk1-378g public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 base toolchains Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-base-toolchains/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-base-toolchains/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bb", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "GuS9TjXsQvqWx2zgz_nobg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.123Z", + "expires": "2019-04-20T00:09:44.123Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0022921dcc3368022", + "takenUntil": "2018-04-20T02:05:01.219Z", + "scheduled": "2018-04-20T01:45:00.834Z", + "started": "2018-04-20T01:45:01.308Z", + "resolved": "2018-04-20T01:55:26.931Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.123Z", + "deadline": "2018-04-21T00:09:44.123Z", + "expires": "2019-04-20T00:09:44.123Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.123Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.123Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-4", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "H-PfNlOzQ4qd7quZtJlw6A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.826Z", + "expires": "2019-04-20T00:09:43.826Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-065c4e0f9b2e3fe6c", + "takenUntil": "2018-04-20T02:22:02.041Z", + "scheduled": "2018-04-20T01:45:00.861Z", + "started": "2018-04-20T01:45:01.370Z", + "resolved": "2018-04-20T02:02:11.335Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.826Z", + "deadline": "2018-04-21T00:09:43.826Z", + "expires": "2019-04-20T00:09:43.826Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.826Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.826Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "H-b4GTzCSnSl0bUPWB2uqw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.880Z", + "expires": "2019-04-20T00:09:39.880Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-015e32a9bfe6e800f", + "takenUntil": "2018-04-20T00:55:39.249Z", + "scheduled": "2018-04-20T00:09:57.635Z", + "started": "2018-04-20T00:20:15.506Z", + "resolved": "2018-04-20T00:35:54.637Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VdOxLofoQZW8Pyysd2THqQ", + "W8F4pEo0RtGVPGCM_YzLWQ", + "WFQrgPn2RO-jEjfk1-378g", + "aD8ER2TJR-miwww4rU1lKA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-base-toolchains-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-base-toolchains-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.880Z", + "deadline": "2018-04-21T00:09:39.880Z", + "expires": "2019-04-20T00:09:39.880Z", + "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-mozilla-inbound-build-linux64-base-toolchains-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-linux64-base-toolchains-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:39.880Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VdOxLofoQZW8Pyysd2THqQ public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@WFQrgPn2RO-jEjfk1-378g public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "base-toolchains", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 base toolchains Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-base-toolchains/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-base-toolchains/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Bb", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "H2F0BWu-RGC1OF-jSXu4pA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:45.207Z", + "expires": "2019-04-20T00:09:45.207Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-004d995637145ca24", + "takenUntil": "2018-04-20T02:19:18.845Z", + "scheduled": "2018-04-20T01:42:16.752Z", + "started": "2018-04-20T01:42:17.322Z", + "resolved": "2018-04-20T02:04:22.159Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "FNFe07GCQpqjnSwpQu7epA", + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:45.207Z", + "deadline": "2018-04-21T00:09:45.207Z", + "expires": "2019-04-20T00:09:45.207Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:45.207Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:45.207Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/FNFe07GCQpqjnSwpQu7epA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-xpcshell" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "HE3Nn1elRdmz7MgVrZSPxw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.575Z", + "expires": "2019-04-20T00:09:38.575Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-007e7b55f195de052", + "takenUntil": "2018-04-20T00:55:43.423Z", + "scheduled": "2018-04-20T00:09:57.650Z", + "started": "2018-04-20T00:20:19.888Z", + "resolved": "2018-04-20T00:49:56.888Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Q4I6ROTUS-OvNrDDMaq_vw", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux-rusttests-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-rusttests-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-rusttests-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.575Z", + "deadline": "2018-04-21T00:09:38.575Z", + "expires": "2019-04-20T00:09:38.575Z", + "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-mozilla-inbound-build-linux-rusttests-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q4I6ROTUS-OvNrDDMaq_vw" + }, + "cache": { + "level-3-mozilla-inbound-build-linux-rusttests-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.575Z", + "type": "directory" + } + }, + "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": "", + "MOZ_AUTOMATION": "1", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "MH_CUSTOM_BUILD_VARIANT_CFG": "rusttests", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_BUILD_DATE": "20180420000800", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "DIST_UPLOADS": "", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MH_BRANCH": "mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "NEED_XVFB": "true", + "USE_SCCACHE": "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", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux32 Rust tests Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux-rusttests/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux-rusttests/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux32" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "Q4I6ROTUS-OvNrDDMaq_vw" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "HQtRKawhTUqMbupC2FV2Qw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.317Z", + "expires": "2019-04-20T00:09:43.317Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-025367ab28954c685", + "takenUntil": "2018-04-20T01:22:21.111Z", + "scheduled": "2018-04-20T00:31:35.009Z", + "started": "2018-04-20T00:31:35.530Z", + "resolved": "2018-04-20T01:06:02.651Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.af947f5ab4cb043d8f9a" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.317Z", + "deadline": "2018-04-21T00:09:43.317Z", + "expires": "2019-04-20T00:09:43.317Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.af947f5ab4cb043d8f9a", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.317Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.317Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.317Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-3" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "HhXVCh9xTgiZ28T9rBRUCA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.925Z", + "expires": "2019-04-20T00:09:40.925Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-213", + "takenUntil": "2018-04-20T01:44:34.182Z", + "scheduled": "2018-04-20T01:07:33.359Z", + "started": "2018-04-20T01:07:33.878Z", + "resolved": "2018-04-20T01:36:52.893Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.925Z", + "deadline": "2018-04-21T00:09:40.925Z", + "expires": "2019-04-20T00:09:40.925Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.925Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.925Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --enable-webrender --total-chunk=4 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/debug-reftest-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/debug-reftest-e10s-4", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "R4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Hk6Cr53aTTO3UkYLVqISoA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.913Z", + "expires": "2019-04-20T00:09:44.913Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e850be44a463e130", + "takenUntil": "2018-04-20T01:40:10.535Z", + "scheduled": "2018-04-20T01:20:10.195Z", + "started": "2018-04-20T01:20:10.635Z", + "resolved": "2018-04-20T01:27:45.930Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Uejkfo90QPKu9UqihKy8xQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.913Z", + "deadline": "2018-04-21T00:09:44.913Z", + "expires": "2019-04-20T00:09:44.913Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.913Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.913Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --per-test-coverage --code-coverage --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Uejkfo90QPKu9UqihKy8xQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Uejkfo90QPKu9UqihKy8xQ/artifacts/public/build/target.test_packages.json --download-symbols true --per-test-coverage --code-coverage --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Uejkfo90QPKu9UqihKy8xQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Per-test coverage ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-ccov/debug-test-coverage-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov/debug-test-coverage-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-coverage", + "name": "test-coverage" + }, + "treeherder": { + "machine": { + "platform": "windows10-64-ccov" + }, + "tier": 2, + "symbol": "TC", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Hkl9Gu2SScOb7P9yE-MUHQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.789Z", + "expires": "2019-04-20T00:09:44.789Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01907ddadf10872c5", + "takenUntil": "2018-04-20T01:17:41.783Z", + "scheduled": "2018-04-20T00:40:03.192Z", + "started": "2018-04-20T00:42:18.511Z", + "resolved": "2018-04-20T01:07:40.627Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.c55e6f4d7b78461a0455" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.789Z", + "deadline": "2018-04-21T00:09:44.789Z", + "expires": "2019-04-20T00:09:44.789Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.c55e6f4d7b78461a0455", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.789Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.789Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.789Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--total-chunk=16", + "--this-chunk=5", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "HoOMvzPVQJemea5ZUFNfxA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.285Z", + "expires": "2019-04-20T00:09:44.285Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0a74d53cca375e32a", + "takenUntil": "2018-04-20T01:42:01.908Z", + "scheduled": "2018-04-20T01:04:59.481Z", + "started": "2018-04-20T01:04:59.931Z", + "resolved": "2018-04-20T01:34:16.689Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "DcnzBL8rSquxc_B1DZm87g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.285Z", + "deadline": "2018-04-21T00:09:44.285Z", + "expires": "2019-04-20T00:09:44.285Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.285Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.285Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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-screenshots --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-screenshots --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "DcnzBL8rSquxc_B1DZm87g", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Browser Screenshots ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32/opt-browser-screenshots-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32/opt-browser-screenshots-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "browser-chrome-screenshots", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "ss" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Hqf5_wp8Rc6TTj2QsJeBdA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.832Z", + "expires": "2019-04-20T00:09:40.832Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0527b907d254d0173", + "takenUntil": "2018-04-20T01:32:39.029Z", + "scheduled": "2018-04-20T01:12:38.048Z", + "started": "2018-04-20T01:12:39.126Z", + "resolved": "2018-04-20T01:18:15.421Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VB2dtaOzQ8WPIvsR7iQnkQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.d9a7b26d56132f795eb4" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.832Z", + "deadline": "2018-04-21T00:09:40.832Z", + "expires": "2019-04-20T00:09:40.832Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.d9a7b26d56132f795eb4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.832Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.832Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.832Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.test_packages.json", + "--verify", + "--e10s", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-pgo/opt-test-verify-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-pgo/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "HxdIAwo5QMuEhlvORq7j8w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.136Z", + "expires": "2019-04-20T00:09:42.136Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-05b2b4365bf01c9dd", + "takenUntil": "2018-04-20T01:59:02.486Z", + "scheduled": "2018-04-20T01:39:02.157Z", + "started": "2018-04-20T01:39:02.565Z", + "resolved": "2018-04-20T01:55:57.914Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.136Z", + "deadline": "2018-04-21T00:09:42.136Z", + "expires": "2019-04-20T00:09:42.136Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.136Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.136Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --test-type=testharness --e10s --total-chunk=12 --this-chunk=9" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-web-platform-tests-e10s-9" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-web-platform-tests-e10s-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt9" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "HxvWRwuwSFKupFXtCz1yuA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.913Z", + "expires": "2019-04-20T00:09:42.913Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f546950ce668d0ea", + "takenUntil": "2018-04-20T01:29:09.768Z", + "scheduled": "2018-04-20T00:53:45.703Z", + "started": "2018-04-20T00:53:46.206Z", + "resolved": "2018-04-20T01:19:44.733Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.a4855bf18b5a70c176ce" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.913Z", + "deadline": "2018-04-21T00:09:42.913Z", + "expires": "2019-04-20T00:09:42.913Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.a4855bf18b5a70c176ce", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.913Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.913Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.913Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--enable-webrender", + "--total-chunk=5", + "--this-chunk=1", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/opt-mochitest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-qr/opt-mochitest-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "HzUQkqT4QU26k6iRMuUqsA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.892Z", + "expires": "2019-04-20T00:09:43.892Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-293", + "takenUntil": "2018-04-20T01:59:02.466Z", + "scheduled": "2018-04-20T01:39:02.149Z", + "started": "2018-04-20T01:39:02.545Z", + "resolved": "2018-04-20T01:51:01.320Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.892Z", + "deadline": "2018-04-21T00:09:43.892Z", + "expires": "2019-04-20T00:09:43.892Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.892Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.892Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-talos-tps-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "I1IsMnkNRdeA0BN0Zk-GpQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.200Z", + "expires": "2019-04-20T00:09:43.200Z", + "retriesLeft": 5, + "state": "unscheduled", + "runs": [] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "L-2XxaA-Rv-4zoX4qBwhyA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.07d9bba32f9dfcd37481" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.200Z", + "deadline": "2018-04-21T00:09:43.200Z", + "expires": "2019-04-20T00:09:43.200Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.07d9bba32f9dfcd37481", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.200Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.200Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.200Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.test_packages.json", + "--test-type=wdspec", + "--e10s", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform webdriver-spec run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/opt-web-platform-tests-wdspec-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-web-platform-tests-wdspec-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "web-platform-tests-wdspec", + "name": "web-platform-tests-wdspec" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "Wd" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "IV66QxLeT5K2x0MFWF2d7w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.800Z", + "expires": "2019-04-20T00:09:40.800Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0e9ea994fbd98e30f", + "takenUntil": "2018-04-20T01:37:33.440Z", + "scheduled": "2018-04-20T00:46:46.142Z", + "started": "2018-04-20T00:46:46.946Z", + "resolved": "2018-04-20T01:27:36.441Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.4f439e983499349052f3" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.800Z", + "deadline": "2018-04-21T00:09:40.800Z", + "expires": "2019-04-20T00:09:40.800Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.4f439e983499349052f3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.800Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.800Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.800Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "IVhMSbNKRLKeM6KMmVNXXw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.164Z", + "expires": "2019-04-20T00:09:43.164Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-09602ce74aab290c8", + "takenUntil": "2018-04-20T01:24:15.379Z", + "scheduled": "2018-04-20T01:04:15.036Z", + "started": "2018-04-20T01:04:15.459Z", + "resolved": "2018-04-20T01:15:57.685Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.164Z", + "deadline": "2018-04-21T00:09:43.164Z", + "expires": "2019-04-20T00:09:43.164Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.164Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.164Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s --enable-webrender" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/opt-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/opt-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "C" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "IZ280aIcRD2xgPezNJJHeg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.848Z", + "expires": "2019-04-20T00:09:40.848Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ea436e961254feb5", + "takenUntil": "2018-04-20T01:44:34.798Z", + "scheduled": "2018-04-20T01:07:33.388Z", + "started": "2018-04-20T01:07:33.926Z", + "resolved": "2018-04-20T01:36:35.553Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.848Z", + "deadline": "2018-04-21T00:09:40.848Z", + "expires": "2019-04-20T00:09:40.848Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.848Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.848Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --headless --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-mochitest-plain-headless-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64/debug-mochitest-plain-headless-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "IcrXF_5iQlOx1RqiZlVxPA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.456Z", + "expires": "2019-04-20T00:09:38.456Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-040564ffadf44d58c", + "takenUntil": "2018-04-20T01:21:00.839Z", + "scheduled": "2018-04-20T00:09:57.624Z", + "started": "2018-04-20T00:09:58.215Z", + "resolved": "2018-04-20T01:10:28.002Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-asan-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-asan-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-asan-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-asan-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-asan-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.456Z", + "deadline": "2018-04-21T00:09:38.456Z", + "expires": "2019-04-20T00:09:38.456Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "PERFHERDER_EXTRA_OPTIONS": "opt asan", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.456Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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\\asan_opt.py --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Opt ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64-asan/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-asan/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 3, + "symbol": "Bo", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "IehvncuXSL-5zbKp8N9vow", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.805Z", + "expires": "2019-04-20T00:09:42.805Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-065", + "takenUntil": "2018-04-20T01:24:15.459Z", + "scheduled": "2018-04-20T01:04:14.989Z", + "started": "2018-04-20T01:04:15.538Z", + "resolved": "2018-04-20T01:16:00.279Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.805Z", + "deadline": "2018-04-21T00:09:42.805Z", + "expires": "2019-04-20T00:09:42.805Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.805Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.805Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=tps-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/opt-talos-tps-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "IioqTyCVRTycPHCYzRf48g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.481Z", + "expires": "2019-04-20T00:09:38.481Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-09346ffc662dfbe1d", + "takenUntil": "2018-04-20T00:47:37.206Z", + "scheduled": "2018-04-20T00:09:57.641Z", + "started": "2018-04-20T00:12:13.564Z", + "resolved": "2018-04-20T00:31:34.061Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "GImkJZEnRLOYE8NMlFUDTQ", + "JE5PzNT_QJyUAPAUH3YI0g", + "OWMKem5GSeeYEfwcgoqEZw", + "U-XQGxP7QEyJte4Iy0rCxA", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "Y7tyhei2TIGK_8N7kyWeaA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.mobile.android-api-16-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.mobile.android-api-16-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.mobile.android-api-16-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.481Z", + "deadline": "2018-04-21T00:09:38.481Z", + "expires": "2019-04-20T00:09:38.481Z", + "scopes": [ + "queue:get-artifact:project/gecko/android-ndk/*", + "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-mozilla-inbound-build-android-api-16-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "JE5PzNT_QJyUAPAUH3YI0g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-android-api-16-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/android/R": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "expires": "2019-04-20T00:09:38.481Z", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk", + "expires": "2019-04-20T00:09:38.481Z", + "type": "file" + }, + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.481Z", + "type": "directory" + }, + "public/android/maven": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "expires": "2019-04-20T00:09:38.481Z", + "type": "directory" + }, + "public/build/geckoview-androidTest.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/officialWithGeckoBinariesNoMinApi/debug/geckoview-official-withGeckoBinaries-noMinApi-debug-androidTest.apk", + "expires": "2019-04-20T00:09:38.481Z", + "type": "file" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@Y7tyhei2TIGK_8N7kyWeaA project/gecko/android-ndk/android-ndk.tar.xz@OWMKem5GSeeYEfwcgoqEZw project/gecko/android-sdk/android-sdk-linux.tar.xz@U-XQGxP7QEyJte4Iy0rCxA public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@GImkJZEnRLOYE8NMlFUDTQ public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "api-16-debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Android 4.0 api-16+ Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-android-api-16/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-android-api-16/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "android-4-0-armv7-api16" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "JE5PzNT_QJyUAPAUH3YI0g" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Im2qe75eSq6ww4HaNWDTKQ", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.339Z", + "expires": "2019-04-20T00:09:43.339Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker13", + "takenUntil": "2018-04-20T01:22:35.881Z", + "scheduled": "2018-04-20T01:02:35.479Z", + "started": "2018-04-20T01:02:35.961Z", + "resolved": "2018-04-20T01:05:57.695Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PlCQdcbpSlOcNnuxkAmZlA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.339Z", + "deadline": "2018-04-21T00:09:43.339Z", + "expires": "2019-04-20T00:09:43.339Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win32/debug' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win32/debug" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win32/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "IxWa4alGSgmmdX9CUiX5IA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.968Z", + "expires": "2019-04-20T00:09:41.968Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-214", + "takenUntil": "2018-04-20T01:28:37.570Z", + "scheduled": "2018-04-20T00:51:36.852Z", + "started": "2018-04-20T00:51:37.318Z", + "resolved": "2018-04-20T01:18:26.902Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.6cee8950f1fd9f5f2913" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.968Z", + "deadline": "2018-04-21T00:09:41.968Z", + "expires": "2019-04-20T00:09:41.968Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.6cee8950f1fd9f5f2913", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:41.968Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:41.968Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-6", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "J50Lk7jSRWSXwhUI7bqYsA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.219Z", + "expires": "2019-04-20T00:09:42.219Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b48a1feeada1c2b8", + "takenUntil": "2018-04-20T01:37:33.163Z", + "scheduled": "2018-04-20T00:46:46.117Z", + "started": "2018-04-20T00:46:46.517Z", + "resolved": "2018-04-20T01:19:21.746Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.0f31f188150c57c99368" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.219Z", + "deadline": "2018-04-21T00:09:42.219Z", + "expires": "2019-04-20T00:09:42.219Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.0f31f188150c57c99368", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.219Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.219Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.219Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-xpcshell-8" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-xpcshell-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "JCUDie04RT6uBQuicPJH9g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.453Z", + "expires": "2019-04-20T00:09:38.453Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-05602dfd4c8f8502a", + "takenUntil": "2018-04-20T01:21:00.116Z", + "scheduled": "2018-04-20T00:09:57.636Z", + "started": "2018-04-20T00:09:58.216Z", + "resolved": "2018-04-20T01:02:08.154Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "XXS3C5PBSMOkRBemBRMklQ", + "fg2ZK6YtTFagbUKxImaMGQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-st-an-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-st-an-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-st-an-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-st-an-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-st-an-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.453Z", + "deadline": "2018-04-21T00:09:38.453Z", + "expires": "2019-04-20T00:09:38.453Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@fg2ZK6YtTFagbUKxImaMGQ public/build/rustc.tar.bz2@XXS3C5PBSMOkRBemBRMklQ public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.453Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/static-analysis", + "description": "Win32 Static Analysis Debug (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "static-analysis-win32-st-an/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win32-st-an/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "JKULNW1ETe-xu56i17jF4w", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.124Z", + "expires": "2019-04-20T00:09:42.124Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker4", + "takenUntil": "2018-04-20T01:24:15.413Z", + "scheduled": "2018-04-20T01:04:15.048Z", + "started": "2018-04-20T01:04:15.491Z", + "resolved": "2018-04-20T01:06:26.128Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.124Z", + "deadline": "2018-04-21T00:09:42.124Z", + "expires": "2019-04-20T00:09:42.124Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win64/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win64/opt" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win64/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "JKv85FcdRui0sWpjvAXO8w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.983Z", + "expires": "2019-04-20T00:09:40.983Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ab94fa5ad89ed18e", + "takenUntil": "2018-04-20T01:29:09.355Z", + "scheduled": "2018-04-20T00:53:45.633Z", + "started": "2018-04-20T00:53:46.151Z", + "resolved": "2018-04-20T01:18:28.116Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.3301d7e0a7de66eeb245" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.983Z", + "deadline": "2018-04-21T00:09:40.983Z", + "expires": "2019-04-20T00:09:40.983Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.3301d7e0a7de66eeb245", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.983Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.983Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.983Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-plain-headless-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-plain-headless-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "JPTIU1P5Rty3kxFiCQlukg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.196Z", + "expires": "2019-04-20T00:09:42.196Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0fdf641265f931322", + "takenUntil": "2018-04-20T01:57:47.860Z", + "scheduled": "2018-04-20T00:36:13.652Z", + "started": "2018-04-20T00:36:14.070Z", + "resolved": "2018-04-20T01:49:06.351Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.23371263759738374c98" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.196Z", + "deadline": "2018-04-21T00:09:42.196Z", + "expires": "2019-04-20T00:09:42.196Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.23371263759738374c98", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.196Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.196Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.196Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-1" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "JQPeAUZ5Q3CXJIZkadEd6A", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:41.063Z", + "expires": "2019-04-20T00:09:41.063Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-315", + "takenUntil": "2018-04-20T01:11:37.369Z", + "scheduled": "2018-04-20T00:51:36.875Z", + "started": "2018-04-20T00:51:37.451Z", + "resolved": "2018-04-20T00:56:31.564Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.9de37518e56be8c0ac33" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:41.063Z", + "deadline": "2018-04-21T00:09:41.063Z", + "expires": "2019-04-20T00:09:41.063Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.9de37518e56be8c0ac33", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:41.063Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:41.063Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--verify", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--verify", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-test-verify-wpt-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/debug-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 2, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "JVaLsHIvRNiAB0Cy_EYyeQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.078Z", + "expires": "2019-04-20T00:09:43.078Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-035cc19a2fb11cc2a", + "takenUntil": "2018-04-20T01:21:07.343Z", + "scheduled": "2018-04-20T00:45:43.355Z", + "started": "2018-04-20T00:45:44.154Z", + "resolved": "2018-04-20T01:05:02.635Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.1cc49d409e8ada12ace0" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.078Z", + "deadline": "2018-04-21T00:09:43.078Z", + "expires": "2019-04-20T00:09:43.078Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.1cc49d409e8ada12ace0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.078Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.078Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.078Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=5" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Jyeo8CeSSV6cI9fuB-dcBA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.870Z", + "expires": "2019-04-20T00:09:40.870Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0f0058b360d291598", + "takenUntil": "2018-04-20T01:48:02.192Z", + "scheduled": "2018-04-20T01:12:38.003Z", + "started": "2018-04-20T01:12:38.753Z", + "resolved": "2018-04-20T01:29:31.364Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VB2dtaOzQ8WPIvsR7iQnkQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.d01c483cc327201bf3b2" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.870Z", + "deadline": "2018-04-21T00:09:40.870Z", + "expires": "2019-04-20T00:09:40.870Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.d01c483cc327201bf3b2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.870Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.870Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.870Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-pgo/opt-mochitest-browser-chrome-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "K0QkqvmDTca57qXuBpzflw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:45.211Z", + "expires": "2019-04-20T00:09:45.211Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a26907459e0e4c26", + "takenUntil": "2018-04-20T01:47:14.211Z", + "scheduled": "2018-04-20T01:10:13.101Z", + "started": "2018-04-20T01:10:13.517Z", + "resolved": "2018-04-20T01:43:42.998Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "E5uFVNQ3S8SgKbncxk8PkQ", + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:45.211Z", + "deadline": "2018-04-21T00:09:45.211Z", + "expires": "2019-04-20T00:09:45.211Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:45.211Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:45.211Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/E5uFVNQ3S8SgKbncxk8PkQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --xpcshell-suite=xpcshell" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-xpcshell" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "K1rIG_mrTO22t5M9hgPJvQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.330Z", + "expires": "2019-04-20T00:09:43.330Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-148", + "takenUntil": "2018-04-20T01:13:46.206Z", + "scheduled": "2018-04-20T00:53:45.658Z", + "started": "2018-04-20T00:53:46.285Z", + "resolved": "2018-04-20T01:04:48.910Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.a23b010cccf9c1f49790" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.330Z", + "deadline": "2018-04-21T00:09:43.330Z", + "expires": "2019-04-20T00:09:43.330Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T00:09:43.330Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T00:09:43.330Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.330Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1800, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--suite=tp5o-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/integration/mozilla-inbound/raw-file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos tp5o ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-talos-tp5o-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-tp5o-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tp" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "K5jv0GijQV2gXXyrCrZP3w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.460Z", + "expires": "2019-04-20T00:09:38.460Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06ddfbfc201b9cdfb", + "takenUntil": "2018-04-20T00:45:21.525Z", + "scheduled": "2018-04-20T00:09:57.644Z", + "started": "2018-04-20T00:09:58.352Z", + "resolved": "2018-04-20T00:29:37.836Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.source.source-bugzilla-info", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.source.source-bugzilla-info", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.source.source-bugzilla-info", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.source.source-bugzilla-info", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.source.source-bugzilla-info", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.460Z", + "deadline": "2018-04-21T00:09:38.460Z", + "expires": "2019-04-20T00:09:38.460Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public": { + "path": "/builds/worker/artifacts", + "expires": "2019-04-20T00:09:38.460Z", + "type": "directory" + } + }, + "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": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "Generate metadata about source files and Bugzilla ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-file-metadata-bugzilla-components" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-file-metadata-bugzilla-components" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "Bugzilla", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "KJ9oeWD8TyiGnAY0WOgItQ", + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.396Z", + "expires": "2019-04-20T00:09:44.396Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "signing-linux-v1", + "workerId": "depsigning-worker16", + "takenUntil": "2018-04-20T01:25:00.058Z", + "scheduled": "2018-04-20T01:04:59.510Z", + "started": "2018-04-20T01:05:00.138Z", + "resolved": "2018-04-20T01:07:01.495Z" + } + ] + }, + "task": { + "provisionerId": "scriptworker-prov-v1", + "workerType": "depsigning", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "DcnzBL8rSquxc_B1DZm87g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.396Z", + "deadline": "2018-04-21T00:09:44.396Z", + "expires": "2019-04-20T00:09:44.396Z", + "scopes": [ + "project:releng:signing:cert:dep-signing", + "project:releng:signing:format:sha2signcode", + "project:releng:signing:format:widevine" + ], + "payload": { + "maxRunTime": 3600, + "upstreamArtifacts": [ + { + "paths": [ + "public/build/setup.exe" + ], + "formats": [ + "sha2signcode" + ], + "taskId": "DcnzBL8rSquxc_B1DZm87g", + "taskType": "build" + }, + { + "paths": [ + "public/build/target.zip" + ], + "formats": [ + "sha2signcode", + "widevine" + ], + "taskId": "DcnzBL8rSquxc_B1DZm87g", + "taskType": "build" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build-signing", + "description": "Initial Signing for locale 'en-US' for build 'win32/opt' ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-signing-win32/opt" + }, + "tags": { + "createdForUser": "ecoal95@gmail.com", + "kind": "build-signing", + "label": "build-signing-win32/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "Bs", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "KqCeUkmySUa-5WHtWlJwvQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.830Z", + "expires": "2019-04-20T00:09:40.830Z", + "retriesLeft": 4, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "exception", + "reasonCreated": "scheduled", + "reasonResolved": "intermittent-task", + "workerGroup": "us-west-2", + "workerId": "i-0e7e5b27783bbd4b6", + "takenUntil": "2018-04-20T01:06:59.221Z", + "scheduled": "2018-04-20T00:31:35.006Z", + "started": "2018-04-20T00:31:35.512Z", + "resolved": "2018-04-20T00:59:01.757Z" + }, + { + "runId": 1, + "state": "completed", + "reasonCreated": "task-retry", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ae5756c5a6adeaeb", + "takenUntil": "2018-04-20T01:49:48.809Z", + "scheduled": "2018-04-20T00:59:01.757Z", + "started": "2018-04-20T00:59:02.183Z", + "resolved": "2018-04-20T01:37:02.349Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.e423901e0ad06ae9fab9" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.830Z", + "deadline": "2018-04-21T00:09:40.830Z", + "expires": "2019-04-20T00:09:40.830Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.e423901e0ad06ae9fab9", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.830Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.830Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.830Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-media", + "--total-chunk=3", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-media-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-media-3", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 3, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "mda3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Kv5qv275SD-hUZmZ9kcy-g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.025Z", + "expires": "2019-04-20T00:09:44.025Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ba27fd483a475cc7", + "takenUntil": "2018-04-20T02:08:20.430Z", + "scheduled": "2018-04-20T00:46:46.155Z", + "started": "2018-04-20T00:46:46.610Z", + "resolved": "2018-04-20T01:56:20.691Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.2e54dd881fda7e4184c0" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.025Z", + "deadline": "2018-04-21T00:09:44.025Z", + "expires": "2019-04-20T00:09:44.025Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.2e54dd881fda7e4184c0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.025Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.025Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.025Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=24", + "--this-chunk=24", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-mochitest-24" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-mochitest-24", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 24, + "total": 24 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "24" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "KwcyGJ_kQceHWjFbhoG36w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.119Z", + "expires": "2019-04-20T00:09:43.119Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-271", + "takenUntil": "2018-04-20T01:45:38.331Z", + "scheduled": "2018-04-20T00:51:36.842Z", + "started": "2018-04-20T00:51:37.321Z", + "resolved": "2018-04-20T01:29:35.648Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.e0a372324ae1eeacd577" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.119Z", + "deadline": "2018-04-21T00:09:43.119Z", + "expires": "2019-04-20T00:09:43.119Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.e0a372324ae1eeacd577", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.119Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.119Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-mochitest-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-mochitest-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "KxRGQ2WNRT647xCFQibLbQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.297Z", + "expires": "2019-04-20T00:09:42.297Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0464653657c4e3e09", + "takenUntil": "2018-04-20T01:37:48.197Z", + "scheduled": "2018-04-20T00:31:35.067Z", + "started": "2018-04-20T00:31:35.509Z", + "resolved": "2018-04-20T01:24:26.898Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.4a586f11846c6a893739" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.297Z", + "deadline": "2018-04-21T00:09:42.297Z", + "expires": "2019-04-20T00:09:42.297Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.4a586f11846c6a893739", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.297Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.297Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.297Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-xpcshell-4" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-xpcshell-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "L-2XxaA-Rv-4zoX4qBwhyA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.571Z", + "expires": "2019-04-20T00:09:38.571Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-007aae69153c88960", + "takenUntil": "2018-04-20T00:56:14.286Z", + "scheduled": "2018-04-20T00:09:57.729Z", + "started": "2018-04-20T00:20:51.017Z", + "resolved": "2018-04-20T00:37:53.805Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Q4I6ROTUS-OvNrDDMaq_vw", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.571Z", + "deadline": "2018-04-21T00:09:38.571Z", + "expires": "2019-04-20T00:09:38.571Z", + "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-mozilla-inbound-build-linux-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q4I6ROTUS-OvNrDDMaq_vw" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.571Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py builds/releng_sub_linux_configs/enable_count_ctors.py", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux32 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux32" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "Q4I6ROTUS-OvNrDDMaq_vw" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "L4RmMDLLQ3mzgQrNcw4AJw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.371Z", + "expires": "2019-04-20T00:09:44.371Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0ba39c83731ac3df5", + "takenUntil": "2018-04-20T01:33:16.847Z", + "scheduled": "2018-04-20T00:40:03.241Z", + "started": "2018-04-20T00:42:29.668Z", + "resolved": "2018-04-20T01:13:29.485Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f8177e5137bad95cf780" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.371Z", + "deadline": "2018-04-21T00:09:44.371Z", + "expires": "2019-04-20T00:09:44.371Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f8177e5137bad95cf780", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.371Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.371Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.371Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=9", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-xpcshell-9" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-9" + }, + "extra": { + "chunks": { + "current": 9, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X9" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "L6wIK8jUSTORg6pKPeligw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.977Z", + "expires": "2019-04-20T00:09:42.977Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-012d55586bfcb4ba1", + "takenUntil": "2018-04-20T01:59:02.559Z", + "scheduled": "2018-04-20T01:39:02.206Z", + "started": "2018-04-20T01:39:02.635Z", + "resolved": "2018-04-20T01:51:16.661Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.977Z", + "deadline": "2018-04-21T00:09:42.977Z", + "expires": "2019-04-20T00:09:42.977Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.977Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.977Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=4" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-4" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-devtools-chrome-e10s-4", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "L7d-rAGjT56s9y5nUNbbyg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.815Z", + "expires": "2019-04-20T00:09:40.815Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ecc1b26ba0cf3254", + "takenUntil": "2018-04-20T01:32:15.202Z", + "scheduled": "2018-04-20T01:12:14.860Z", + "started": "2018-04-20T01:12:15.287Z", + "resolved": "2018-04-20T01:21:13.020Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "TjAYI532Styvwto_sEVUcQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.4f6bdf1dc1e7cc5db62c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.815Z", + "deadline": "2018-04-21T00:09:40.815Z", + "expires": "2019-04-20T00:09:40.815Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.4f6bdf1dc1e7cc5db62c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/TjAYI532Styvwto_sEVUcQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/TjAYI532Styvwto_sEVUcQ/artifacts/public/build/target.test_packages.json", + "--per-test-coverage", + "--code-coverage", + "--e10s", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/TjAYI532Styvwto_sEVUcQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/TjAYI532Styvwto_sEVUcQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Per-test coverage ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-ccov/opt-test-coverage-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-ccov/opt-test-coverage-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-coverage", + "name": "test-coverage" + }, + "treeherder": { + "machine": { + "platform": "linux64-ccov" + }, + "tier": 2, + "symbol": "TC", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "L7k9BPbnSRimrgebiFepXQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.308Z", + "expires": "2019-04-20T00:09:43.308Z", + "retriesLeft": 5, + "state": "unscheduled", + "runs": [] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "L-2XxaA-Rv-4zoX4qBwhyA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.2eef43dbcf6c85cb3097" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.308Z", + "deadline": "2018-04-21T00:09:43.308Z", + "expires": "2019-04-20T00:09:43.308Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.2eef43dbcf6c85cb3097", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.308Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.308Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.308Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/opt-xpcshell-5" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/opt-xpcshell-5" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "L7rsyj0dTVm9Zq5anTpzEg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.605Z", + "expires": "2019-04-20T00:09:38.605Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c15e8996b5182193", + "takenUntil": "2018-04-20T00:55:39.957Z", + "scheduled": "2018-04-20T00:09:57.649Z", + "started": "2018-04-20T00:20:16.719Z", + "resolved": "2018-04-20T00:49:54.679Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "IqxA_nG6QVaBux-I4WXE0A", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-reporter-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-asan-reporter-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.605Z", + "deadline": "2018-04-21T00:09:38.605Z", + "expires": "2019-04-20T00:09:38.605Z", + "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-mozilla-inbound-build-linux64-asan-reporter-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux64-asan-reporter-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.605Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@IqxA_nG6QVaBux-I4WXE0A public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "asan-reporter", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "asan-reporter-tc", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Opt ASAN Reporter Nightly ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-asan-reporter/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-asan-reporter/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "BoR", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "LBJSRODjTbS8ty4e-4MMug", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.874Z", + "expires": "2019-04-20T00:09:39.874Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f1a92bd8b5ae2527", + "takenUntil": "2018-04-20T00:29:58.256Z", + "scheduled": "2018-04-20T00:09:57.655Z", + "started": "2018-04-20T00:09:58.337Z", + "resolved": "2018-04-20T00:14:54.096Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.874Z", + "deadline": "2018-04-21T00:09:39.874Z", + "expires": "2019-04-20T00:09:39.874Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/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 mingw-capitalization -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "lint for MinGW Capitalization issues ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-mozlint-mingw-cap" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-mingw-cap" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "mingw", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "LVPCm91tSfixcfBf1gxqhg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.831Z", + "expires": "2019-04-20T00:09:43.831Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0c7e6f3409660d571", + "takenUntil": "2018-04-20T01:39:38.198Z", + "scheduled": "2018-04-20T01:02:35.471Z", + "started": "2018-04-20T01:02:35.920Z", + "resolved": "2018-04-20T01:27:43.677Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PlCQdcbpSlOcNnuxkAmZlA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.831Z", + "deadline": "2018-04-21T00:09:43.831Z", + "expires": "2019-04-20T00:09:43.831Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.831Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.831Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=3" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32/debug-mochitest-browser-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32/debug-mochitest-browser-chrome-e10s-3", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 3, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "LXZBDNv0TAO7u2_k353W_g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.887Z", + "expires": "2019-04-20T00:09:40.887Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-060fb68a419db3108", + "takenUntil": "2018-04-20T01:13:45.935Z", + "scheduled": "2018-04-20T00:53:45.591Z", + "started": "2018-04-20T00:53:46.013Z", + "resolved": "2018-04-20T01:06:48.287Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.e42167c2f76f9ecc725e" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.887Z", + "deadline": "2018-04-21T00:09:40.887Z", + "expires": "2019-04-20T00:09:40.887Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.e42167c2f76f9ecc725e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.887Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.887Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.887Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-devtools-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-devtools-chrome-e10s-6", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "LbJ9Fq7bQdGZzPmoZc294Q", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.282Z", + "expires": "2019-04-20T00:09:44.282Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-177", + "takenUntil": "2018-04-20T01:59:01.955Z", + "scheduled": "2018-04-20T01:04:59.524Z", + "started": "2018-04-20T01:04:59.978Z", + "resolved": "2018-04-20T01:49:51.884Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "DcnzBL8rSquxc_B1DZm87g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.282Z", + "deadline": "2018-04-21T00:09:44.282Z", + "expires": "2019-04-20T00:09:44.282Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.282Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.282Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=damp-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "DcnzBL8rSquxc_B1DZm87g", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32/opt-talos-damp-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32/opt-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "damp" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "LjLRvZMuR--S82S8Q1l6yA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.089Z", + "expires": "2019-04-20T00:09:43.089Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0eb3b4411624cef70", + "takenUntil": "2018-04-20T02:01:35.507Z", + "scheduled": "2018-04-20T01:07:33.364Z", + "started": "2018-04-20T01:07:33.921Z", + "resolved": "2018-04-20T01:51:54.385Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.089Z", + "deadline": "2018-04-21T00:09:43.089Z", + "expires": "2019-04-20T00:09:43.089Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.089Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.089Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-mochitest-browser-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64/debug-mochitest-browser-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "LukgbOM2SNqr6Oq-ZascKg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.801Z", + "expires": "2019-04-20T00:09:40.801Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ed17a6fb39b27362", + "takenUntil": "2018-04-20T01:37:34.580Z", + "scheduled": "2018-04-20T00:46:46.130Z", + "started": "2018-04-20T00:46:46.945Z", + "resolved": "2018-04-20T01:25:52.684Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.4d3aabdbbbb0506fc155" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.801Z", + "deadline": "2018-04-21T00:09:40.801Z", + "expires": "2019-04-20T00:09:40.801Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.4d3aabdbbbb0506fc155", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.801Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.801Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.801Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=13", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-13" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-13", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 13, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R13" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "M9q2RujlTKGBWpvr6AZOyw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.616Z", + "expires": "2019-04-20T00:09:38.616Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-096dad7a2c4364c45", + "takenUntil": "2018-04-20T01:21:01.561Z", + "scheduled": "2018-04-20T00:09:57.657Z", + "started": "2018-04-20T00:09:58.220Z", + "resolved": "2018-04-20T01:07:43.551Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-noopt-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-noopt-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-noopt-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.616Z", + "deadline": "2018-04-21T00:09:38.616Z", + "expires": "2019-04-20T00:09:38.616Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.616Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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\\noopt_debug.py --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 No-optimize Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64-noopt/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-noopt/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64-noopt" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "MBLaBdDsSW-ok6aNMGSHSA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.806Z", + "expires": "2019-04-20T00:09:40.806Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-02411edbbf95f7e73", + "takenUntil": "2018-04-20T02:05:01.264Z", + "scheduled": "2018-04-20T01:45:00.831Z", + "started": "2018-04-20T01:45:01.351Z", + "resolved": "2018-04-20T01:58:10.130Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.806Z", + "deadline": "2018-04-21T00:09:40.806Z", + "expires": "2019-04-20T00:09:40.806Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.806Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.806Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-devtools-chrome-chunked --e10s --total-chunk=8 --this-chunk=5" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-devtools-chrome-e10s-5", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 5, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "MmjDWU33SSeEde8sJiWgpg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.818Z", + "expires": "2019-04-20T00:09:40.818Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06b5f6eab4aafba40", + "takenUntil": "2018-04-20T01:21:07.732Z", + "scheduled": "2018-04-20T00:45:43.335Z", + "started": "2018-04-20T00:45:44.028Z", + "resolved": "2018-04-20T01:11:28.514Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.007933f74ad412a1a5d3" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.818Z", + "deadline": "2018-04-21T00:09:40.818Z", + "expires": "2019-04-20T00:09:40.818Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.007933f74ad412a1a5d3", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.818Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.818Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.818Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=16" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-16" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64-asan/opt-mochitest-browser-chrome-e10s-16", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 16, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc16" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Mt2_R6sjR8Wt7lCxuYTJ-Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.229Z", + "expires": "2019-04-20T00:09:42.229Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-032da5451b7855653", + "takenUntil": "2018-04-20T00:51:35.574Z", + "scheduled": "2018-04-20T00:31:35.155Z", + "started": "2018-04-20T00:31:35.653Z", + "resolved": "2018-04-20T00:38:08.092Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.fbc6f3e2d14892a19fa2" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.229Z", + "deadline": "2018-04-21T00:09:42.229Z", + "expires": "2019-04-20T00:09:42.229Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.fbc6f3e2d14892a19fa2", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.229Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.229Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.229Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--verify", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-test-verify" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/debug-test-verify" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "MxHNpTaBTzOLfvTanip5-Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.943Z", + "expires": "2019-04-20T00:09:43.943Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0bb4b7621bf2475eb", + "takenUntil": "2018-04-20T01:29:09.376Z", + "scheduled": "2018-04-20T00:53:45.643Z", + "started": "2018-04-20T00:53:46.187Z", + "resolved": "2018-04-20T01:15:13.683Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.1653f86ca58f6f20cc1b" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.943Z", + "deadline": "2018-04-21T00:09:43.943Z", + "expires": "2019-04-20T00:09:43.943Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.1653f86ca58f6f20cc1b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.943Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.943Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.943Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=5", + "--this-chunk=5", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-plain-headless-e10s-5" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-plain-headless-e10s-5", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 5, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "MyXNDeF2Sfq0e8Owi_6suA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.852Z", + "expires": "2019-04-20T00:09:40.852Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-09c853b1f864d4c8b", + "takenUntil": "2018-04-20T01:21:08.053Z", + "scheduled": "2018-04-20T00:45:43.378Z", + "started": "2018-04-20T00:45:44.674Z", + "resolved": "2018-04-20T01:08:04.899Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f9abc2d3079b8180feb6" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.852Z", + "deadline": "2018-04-21T00:09:40.852Z", + "expires": "2019-04-20T00:09:40.852Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f9abc2d3079b8180feb6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.852Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.852Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.852Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=6" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-xpcshell-6" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "N9TURhReTIOSzsJet-aAJw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.068Z", + "expires": "2019-04-20T00:09:42.068Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-346", + "takenUntil": "2018-04-20T01:28:37.899Z", + "scheduled": "2018-04-20T00:51:36.825Z", + "started": "2018-04-20T00:51:37.337Z", + "resolved": "2018-04-20T01:21:27.371Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.415de071468bb80644cd" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.068Z", + "deadline": "2018-04-21T00:09:42.068Z", + "expires": "2019-04-20T00:09:42.068Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.415de071468bb80644cd", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.068Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.068Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=1" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-1", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "NAfuAOx1TqODIjNTZSFK9w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.893Z", + "expires": "2019-04-20T00:09:39.893Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-000859159a6a5e723", + "takenUntil": "2018-04-20T00:29:58.274Z", + "scheduled": "2018-04-20T00:09:57.639Z", + "started": "2018-04-20T00:09:58.351Z", + "resolved": "2018-04-20T00:19:12.354Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.893Z", + "deadline": "2018-04-21T00:09:39.893Z", + "expires": "2019-04-20T00:09:39.893Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko/ && cp -r /build/node_modules_eslint node_modules && ln -s ../tools/lint/eslint/eslint-plugin-mozilla node_modules && ln -s ../tools/lint/eslint/eslint-plugin-spidermonkey-js node_modules && ./mach lint -l eslint -f treeherder --quiet\n" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "JS lint check ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-mozlint-eslint" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-eslint" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "ES", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "NDOKR2KxRY2LY2oqsk1QoA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.145Z", + "expires": "2019-04-20T00:09:44.145Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-080dd1d86595a62db", + "takenUntil": "2018-04-20T01:05:43.782Z", + "scheduled": "2018-04-20T00:45:43.316Z", + "started": "2018-04-20T00:45:43.860Z", + "resolved": "2018-04-20T00:52:59.196Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.48899e3333ad32074c63" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.145Z", + "deadline": "2018-04-21T00:09:44.145Z", + "expires": "2019-04-20T00:09:44.145Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.48899e3333ad32074c63", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.145Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.145Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.145Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--verify", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-test-verify-wpt-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.550Z", + "expires": "2019-04-20T00:09:38.550Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-052437e2e32983836", + "takenUntil": "2018-04-20T01:21:01.785Z", + "scheduled": "2018-04-20T00:09:57.638Z", + "started": "2018-04-20T00:09:58.214Z", + "resolved": "2018-04-20T01:07:31.755Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.550Z", + "deadline": "2018-04-21T00:09:38.550Z", + "expires": "2019-04-20T00:09:38.550Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.550Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "NxnCASm_R26FTvQBO9Rl1g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.172Z", + "expires": "2019-04-20T00:09:43.172Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-04d45f0da1b77ca2e", + "takenUntil": "2018-04-20T01:13:46.433Z", + "scheduled": "2018-04-20T00:53:45.737Z", + "started": "2018-04-20T00:53:46.513Z", + "resolved": "2018-04-20T01:00:26.517Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.ac86b77fd5fab27d242d" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.172Z", + "deadline": "2018-04-21T00:09:43.172Z", + "expires": "2019-04-20T00:09:43.172Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.ac86b77fd5fab27d242d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 10800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.172Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.172Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.172Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--verify", + "--e10s", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-test-verify-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "NyNa9vXbR4iHabGJwhseDw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.469Z", + "expires": "2019-04-20T00:09:38.469Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03937b9a23de4839e", + "takenUntil": "2018-04-20T00:29:58.273Z", + "scheduled": "2018-04-20T00:09:57.651Z", + "started": "2018-04-20T00:09:58.353Z", + "resolved": "2018-04-20T00:14:07.247Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.469Z", + "deadline": "2018-04-21T00:09:38.469Z", + "expires": "2019-04-20T00:09:38.469Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/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 codespell -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "Checks for misspellings in text files ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-mozlint-codespell" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-codespell" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "spell", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "OAT65XKqQqq799WNfeeuwA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.327Z", + "expires": "2019-04-20T00:09:43.327Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-021a3a85d075e8f2d", + "takenUntil": "2018-04-20T01:59:02.578Z", + "scheduled": "2018-04-20T01:39:02.265Z", + "started": "2018-04-20T01:39:02.657Z", + "resolved": "2018-04-20T01:50:24.702Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.327Z", + "deadline": "2018-04-21T00:09:43.327Z", + "expires": "2019-04-20T00:09:43.327Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.327Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.327Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "OCRI_5adSWyEVCHDXBXz9g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.997Z", + "expires": "2019-04-20T00:09:40.997Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-070e64c91655f9fbe", + "takenUntil": "2018-04-20T01:14:36.172Z", + "scheduled": "2018-04-20T00:36:13.628Z", + "started": "2018-04-20T00:39:12.523Z", + "resolved": "2018-04-20T01:09:31.845Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.0245ec9cb6c42e91253b" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.997Z", + "deadline": "2018-04-21T00:09:40.997Z", + "expires": "2019-04-20T00:09:40.997Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.0245ec9cb6c42e91253b", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.997Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.997Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.997Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-e10s-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-e10s-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "15" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "OVrHWk2eTQaC6kUbUY_1qQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.861Z", + "expires": "2019-04-20T00:09:43.861Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-022e3f94b4e9df7b0", + "takenUntil": "2018-04-20T01:29:10.341Z", + "scheduled": "2018-04-20T00:53:45.798Z", + "started": "2018-04-20T00:53:46.558Z", + "resolved": "2018-04-20T01:12:02.396Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.319d88a3306e8cc3da89" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.861Z", + "deadline": "2018-04-21T00:09:43.861Z", + "expires": "2019-04-20T00:09:43.861Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.319d88a3306e8cc3da89", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.861Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.861Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.861Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-browser-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-browser-chrome-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "OWNznClTSMao4NDArLURvA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.586Z", + "expires": "2019-04-20T00:09:38.586Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-05ca3efe1beb88ab4", + "takenUntil": "2018-04-20T00:29:58.265Z", + "scheduled": "2018-04-20T00:09:57.656Z", + "started": "2018-04-20T00:09:58.347Z", + "resolved": "2018-04-20T00:15:32.859Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.586Z", + "deadline": "2018-04-21T00:09:38.586Z", + "expires": "2019-04-20T00:09:38.586Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-sparse-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-sparse-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/docs.tar.gz": { + "path": "/builds/worker/checkouts/gecko/docs-out/main.tar.gz", + "expires": "2019-04-20T00:09:38.586Z", + "type": "file" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--vcs-checkout=/builds/worker/checkouts/gecko", + "--sparse-profile=build/sparse-profiles/sphinx-docs", + "--fetch-hgfingerprint", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko && ./mach doc --outdir docs-out --no-open --archive\n" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "Generate the Sphinx documentation ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-doc-generate" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-doc-generate" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "Doc", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "OiWydxuCQ8iQUh7Ul7-HhQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.221Z", + "expires": "2019-04-20T00:09:42.221Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-04e22372bf038b3a9", + "takenUntil": "2018-04-20T01:42:23.690Z", + "scheduled": "2018-04-20T00:36:13.833Z", + "started": "2018-04-20T00:36:14.253Z", + "resolved": "2018-04-20T01:33:33.958Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.98bf0d799139b51b575f" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.221Z", + "deadline": "2018-04-21T00:09:42.221Z", + "expires": "2019-04-20T00:09:42.221Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.98bf0d799139b51b575f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.221Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.221Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.221Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-web-platform-tests-e10s-5" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/debug-web-platform-tests-e10s-5" + }, + "extra": { + "chunks": { + "current": 5, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt5" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Ojiqyw_uRVy14SFBaQAXRQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.799Z", + "expires": "2019-04-20T00:09:40.799Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-038c79ba6ae492055", + "takenUntil": "2018-04-20T01:37:32.958Z", + "scheduled": "2018-04-20T00:46:46.266Z", + "started": "2018-04-20T00:46:46.947Z", + "resolved": "2018-04-20T01:18:23.032Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.ada9911fafb2ca6a9a52" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.799Z", + "deadline": "2018-04-21T00:09:40.799Z", + "expires": "2019-04-20T00:09:40.799Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.ada9911fafb2ca6a9a52", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.799Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.799Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.799Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=robocop", + "--total-chunk=4", + "--this-chunk=4", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Robocop run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-robocop-4" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-android-4.3-arm7-api-16/opt-robocop-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 4 + }, + "suite": { + "flavor": "robocop", + "name": "robocop" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "rc4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "OzbjxAbXSqSwBCb4PFLLbg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.146Z", + "expires": "2019-04-20T00:09:42.146Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0114", + "takenUntil": "2018-04-20T01:45:38.909Z", + "scheduled": "2018-04-20T00:51:36.922Z", + "started": "2018-04-20T00:51:37.449Z", + "resolved": "2018-04-20T01:27:46.986Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.09bf64e57baeb97437e5" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.146Z", + "deadline": "2018-04-21T00:09:42.146Z", + "expires": "2019-04-20T00:09:42.146Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.09bf64e57baeb97437e5", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.146Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.146Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--test-type=testharness", + "--e10s", + "--total-chunk=10", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-web-platform-tests-e10s-3" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/debug-web-platform-tests-e10s-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 10 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "P2nww6zpRHC-y4Y-Ea8Uig", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.969Z", + "expires": "2019-04-20T00:09:42.969Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-00a245b1a782111d1", + "takenUntil": "2018-04-20T01:24:15.377Z", + "scheduled": "2018-04-20T01:04:15.042Z", + "started": "2018-04-20T01:04:15.460Z", + "resolved": "2018-04-20T01:13:10.975Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "V9XHy2jGTnSLEsMXB8AI5Q" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.969Z", + "deadline": "2018-04-21T00:09:42.969Z", + "expires": "2019-04-20T00:09:42.969Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.969Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.969Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=mochitest-gl --e10s --enable-webrender --total-chunk=8 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest webgl run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/opt-mochitest-webgl-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/opt-mochitest-webgl-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 8 + }, + "suite": { + "flavor": "mochitest-gl", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "gl7" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "PEkH6JR9R6y8OiTSnEcfBA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.888Z", + "expires": "2019-04-20T00:09:40.888Z", + "retriesLeft": 5, + "state": "unscheduled", + "runs": [] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "L-2XxaA-Rv-4zoX4qBwhyA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.5284d80980c2fa24a93e" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.888Z", + "deadline": "2018-04-21T00:09:40.888Z", + "expires": "2019-04-20T00:09:40.888Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.5284d80980c2fa24a93e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.888Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.888Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.888Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=7", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/opt-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/opt-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.609Z", + "expires": "2019-04-20T00:09:38.609Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-02d40002fb3da29d9", + "takenUntil": "2018-04-20T01:55:01.289Z", + "scheduled": "2018-04-20T00:09:57.774Z", + "started": "2018-04-20T00:09:59.757Z", + "resolved": "2018-04-20T01:44:59.929Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-pgo", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-pgo", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-pgo", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-pgo", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-pgo", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.609Z", + "deadline": "2018-04-21T00:09:38.609Z", + "expires": "2019-04-20T00:09:38.609Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.609Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 10800, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --enable-pgo --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Opt PGO ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64/pgo" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64/pgo" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "PhXPgMVnQt2MAEsOFZoGfw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.870Z", + "expires": "2019-04-20T00:09:40.870Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0ac5a9703ef874b97", + "takenUntil": "2018-04-20T02:05:01.227Z", + "scheduled": "2018-04-20T01:45:00.814Z", + "started": "2018-04-20T01:45:01.327Z", + "resolved": "2018-04-20T01:58:11.061Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.870Z", + "deadline": "2018-04-21T00:09:40.870Z", + "expires": "2019-04-20T00:09:40.870Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.870Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.870Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=2" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-mochitest-browser-chrome-e10s-2", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 2, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "PlCQdcbpSlOcNnuxkAmZlA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.601Z", + "expires": "2019-04-20T00:09:38.601Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0be1796f99e6edf56", + "takenUntil": "2018-04-20T01:21:00.427Z", + "scheduled": "2018-04-20T00:09:57.740Z", + "started": "2018-04-20T00:09:58.216Z", + "resolved": "2018-04-20T01:02:34.531Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.601Z", + "deadline": "2018-04-21T00:09:38.601Z", + "expires": "2019-04-20T00:09:38.601Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.601Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win32 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win32/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win32/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "PovIGorhQMG02cMSPD5yJQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.455Z", + "expires": "2019-04-20T00:09:38.455Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0851e497c90f7c044", + "takenUntil": "2018-04-20T00:55:04.300Z", + "scheduled": "2018-04-20T00:09:57.771Z", + "started": "2018-04-20T00:19:40.702Z", + "resolved": "2018-04-20T00:45:28.562Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "G4yDYLgqSrSaSlv1g9LTlQ", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Nqq-8_PGSsiK-2cJJjuP7w", + "W8F4pEo0RtGVPGCM_YzLWQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-fuzzing-asan-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-fuzzing-asan-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.455Z", + "deadline": "2018-04-21T00:09:38.455Z", + "expires": "2019-04-20T00:09:38.455Z", + "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-mozilla-inbound-build-macosx64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-macosx64-asan-fuzzing-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.455Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@G4yDYLgqSrSaSlv1g9LTlQ public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Nqq-8_PGSsiK-2cJJjuP7w public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "PERFHERDER_EXTRA_OPTIONS": "asan-fuzzing", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "cross-fuzzing-asan", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "MacOS X x64 Cross-compile Fuzzing ASAN ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-macosx64-asan-fuzzing/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64-asan-fuzzing/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "osx-cross" + }, + "tier": 1, + "symbol": "Bof", + "jobKind": "build", + "collection": { + "asan": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "PrQ1hJEpTRi23aTZo_rd9w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.242Z", + "expires": "2019-04-20T00:09:42.242Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-402", + "takenUntil": "2018-04-20T01:59:31.220Z", + "scheduled": "2018-04-20T00:48:29.134Z", + "started": "2018-04-20T00:48:29.694Z", + "resolved": "2018-04-20T01:53:11.367Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.572d85e3a09880f1cefa" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.242Z", + "deadline": "2018-04-21T00:09:42.242Z", + "expires": "2019-04-20T00:09:42.242Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.572d85e3a09880f1cefa", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.242Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.242Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Are we slim yet ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-awsy-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-awsy-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "awsy", + "name": "awsy" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "SY-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Are we slim yet tests by TaskCluster with e10s", + "tier": 1, + "symbol": "sy" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "QCeThAC2QM2B9VH7jrNopA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.858Z", + "expires": "2019-04-20T00:09:39.858Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0249e3ddd2f6d6021", + "takenUntil": "2018-04-20T00:56:32.274Z", + "scheduled": "2018-04-20T00:09:57.746Z", + "started": "2018-04-20T00:21:08.717Z", + "resolved": "2018-04-20T00:40:02.445Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Q4I6ROTUS-OvNrDDMaq_vw", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.858Z", + "deadline": "2018-04-21T00:09:39.858Z", + "expires": "2019-04-20T00:09:39.858Z", + "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-mozilla-inbound-build-linux-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q4I6ROTUS-OvNrDDMaq_vw" + }, + "cache": { + "level-3-mozilla-inbound-build-linux-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:39.858Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_32_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux32 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux32" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "Q4I6ROTUS-OvNrDDMaq_vw" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "QELX5FUYSwGgLtE5nPNkxQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.119Z", + "expires": "2019-04-20T00:09:42.119Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-02e93ea248dcea018", + "takenUntil": "2018-04-20T01:37:45.061Z", + "scheduled": "2018-04-20T00:31:35.038Z", + "started": "2018-04-20T00:31:35.515Z", + "resolved": "2018-04-20T01:27:54.717Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f982c479bbb5631d8fca" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.119Z", + "deadline": "2018-04-21T00:09:42.119Z", + "expires": "2019-04-20T00:09:42.119Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f982c479bbb5631d8fca", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.119Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.119Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.119Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=15", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-15" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-15", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 15, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "15" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "QMExGHGoQWqwqiw6HTrduQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.624Z", + "expires": "2019-04-20T00:09:38.624Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0ec60500c4e110007", + "takenUntil": "2018-04-20T00:56:27.465Z", + "scheduled": "2018-04-20T00:09:57.743Z", + "started": "2018-04-20T00:21:04.270Z", + "resolved": "2018-04-20T00:38:50.125Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "NS-wi5x8Qy-jMN3Y1g48_g", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-tup-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-tup-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-tup-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-tup-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-tup-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.624Z", + "deadline": "2018-04-21T00:09:38.624Z", + "expires": "2019-04-20T00:09:38.624Z", + "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-mozilla-inbound-build-linux64-tup-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-tup-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.624Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ public/build/tup.tar.xz@NS-wi5x8Qy-jMN3Y1g48_g", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "NEED_XVFB": "true", + "PERFHERDER_EXTRA_OPTIONS": "tup", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "tup", + "MOZ_AUTOMATION": "1", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Tup ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-tup/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-tup/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "Btup", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "QY3iXOr5RqmktUVjZ1c3xA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.613Z", + "expires": "2019-04-20T00:09:38.613Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0130a12ff72ae165d", + "takenUntil": "2018-04-20T01:11:21.131Z", + "scheduled": "2018-04-20T00:09:57.731Z", + "started": "2018-04-20T00:20:34.113Z", + "resolved": "2018-04-20T00:53:44.364Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.613Z", + "deadline": "2018-04-21T00:09:38.613Z", + "expires": "2019-04-20T00:09:38.613Z", + "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-mozilla-inbound-build-linux64-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.613Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py builds/releng_sub_linux_configs/enable_count_ctors.py", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "QYCqjAowR0mK8S-bJMqylA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.125Z", + "expires": "2019-04-20T00:09:43.125Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-03513de9ef020c048", + "takenUntil": "2018-04-20T01:13:45.884Z", + "scheduled": "2018-04-20T00:53:45.568Z", + "started": "2018-04-20T00:53:45.962Z", + "resolved": "2018-04-20T01:07:22.587Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.00e9d16e428e99389b4f" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.125Z", + "deadline": "2018-04-21T00:09:43.125Z", + "expires": "2019-04-20T00:09:43.125Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.00e9d16e428e99389b4f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.125Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.125Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.125Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=chrome", + "--allow-software-gl-layers", + "--total-chunk=3", + "--this-chunk=2", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "chrome", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-chrome-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-chrome-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "QZtjGWbCSrSA1yI5MaS36Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.101Z", + "expires": "2019-04-20T00:09:42.101Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-05419ecb3778c160b", + "takenUntil": "2018-04-20T02:01:36.030Z", + "scheduled": "2018-04-20T01:07:33.408Z", + "started": "2018-04-20T01:07:33.917Z", + "resolved": "2018-04-20T01:52:16.911Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.101Z", + "deadline": "2018-04-21T00:09:42.101Z", + "expires": "2019-04-20T00:09:42.101Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.101Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.101Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 7200, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --test-type=testharness --e10s --total-chunk=12 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-web-platform-tests-e10s-1" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-web-platform-tests-e10s-1" + }, + "extra": { + "chunks": { + "current": 1, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "QeUinTL8S1usTZ1J2_7yTA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.817Z", + "expires": "2019-04-20T00:09:43.817Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-176", + "takenUntil": "2018-04-20T01:44:35.486Z", + "scheduled": "2018-04-20T01:07:33.337Z", + "started": "2018-04-20T01:07:33.882Z", + "resolved": "2018-04-20T01:32:21.691Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.817Z", + "deadline": "2018-04-21T00:09:43.817Z", + "expires": "2019-04-20T00:09:43.817Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.817Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.817Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --total-chunk=4 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-reftest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64/debug-reftest-e10s-1", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "QyiTnv3bR5GR7RPwaSW7Mw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.847Z", + "expires": "2019-04-20T00:09:40.847Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b78578894763eef5", + "takenUntil": "2018-04-20T02:05:01.224Z", + "scheduled": "2018-04-20T01:45:00.840Z", + "started": "2018-04-20T01:45:01.306Z", + "resolved": "2018-04-20T01:55:31.872Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.847Z", + "deadline": "2018-04-21T00:09:40.847Z", + "expires": "2019-04-20T00:09:40.847Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.847Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.847Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --reftest-suite=crashtest --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-pgo/opt-crashtest-e10s", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "R-L5RZYvSVqy9AxQQIPswA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.111Z", + "expires": "2019-04-20T00:09:43.111Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-386", + "takenUntil": "2018-04-20T01:08:29.585Z", + "scheduled": "2018-04-20T00:48:29.185Z", + "started": "2018-04-20T00:48:29.666Z", + "resolved": "2018-04-20T00:52:55.793Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.dc87d6645d8542d46b75" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.111Z", + "deadline": "2018-04-21T00:09:43.111Z", + "expires": "2019-04-20T00:09:43.111Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.dc87d6645d8542d46b75", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.111Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.111Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/web_platform_tests.py", + "--cfg", + "mozharness/configs/web_platform_tests/prod_config.py", + "--verify", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--verify", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-test-verify-wpt-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 2, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "RFFFrYRNS9uw65STtV7GmQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.231Z", + "expires": "2019-04-20T00:09:43.231Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-03c010a64c5354740", + "takenUntil": "2018-04-20T02:01:35.734Z", + "scheduled": "2018-04-20T01:07:33.371Z", + "started": "2018-04-20T01:07:34.178Z", + "resolved": "2018-04-20T01:58:32.445Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64-gpu", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.231Z", + "deadline": "2018-04-21T00:09:43.231Z", + "expires": "2019-04-20T00:09:43.231Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.231Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.231Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=mochitest-media --e10s --enable-webrender" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/debug-mochitest-media-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/debug-mochitest-media-e10s", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "mda" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "RGh8Gp4-RMioY4J7qCbi0A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.899Z", + "expires": "2019-04-20T00:09:39.899Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-009dfa00bf3aeace4", + "takenUntil": "2018-04-20T01:30:30.168Z", + "scheduled": "2018-04-20T01:10:29.773Z", + "started": "2018-04-20T01:10:30.245Z", + "resolved": "2018-04-20T01:12:58.543Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IcrXF_5iQlOx1RqiZlVxPA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.899Z", + "deadline": "2018-04-21T00:09:39.899Z", + "expires": "2019-04-20T00:09:39.899Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:39.899Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:39.899Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.test_packages.json --download-symbols ondemand --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "IcrXF_5iQlOx1RqiZlVxPA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-asan/opt-test-verify-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-asan/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 3, + "symbol": "TV", + "jobKind": "test", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "RNeRn2BxToC4q_v4PsV_QA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.885Z", + "expires": "2019-04-20T00:09:40.885Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-09e208a2c51c36346", + "takenUntil": "2018-04-20T01:05:43.801Z", + "scheduled": "2018-04-20T00:45:43.276Z", + "started": "2018-04-20T00:45:43.882Z", + "resolved": "2018-04-20T00:52:03.396Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.cd4d8877bd7697fc12df" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.885Z", + "deadline": "2018-04-21T00:09:40.885Z", + "expires": "2019-04-20T00:09:40.885Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.cd4d8877bd7697fc12df", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.885Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.885Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.885Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=4" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-xpcshell-4" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-xpcshell-4" + }, + "extra": { + "chunks": { + "current": 4, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "asan": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X4" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "RWH9fvtYTzWj7XO-SkQUyg", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.901Z", + "expires": "2019-04-20T00:09:40.901Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-227", + "takenUntil": "2018-04-20T01:42:30.201Z", + "scheduled": "2018-04-20T00:48:29.169Z", + "started": "2018-04-20T00:48:29.742Z", + "resolved": "2018-04-20T01:38:58.557Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.77944432f3306085a936" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.901Z", + "deadline": "2018-04-21T00:09:40.901Z", + "expires": "2019-04-20T00:09:40.901Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.77944432f3306085a936", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.901Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.901Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--reftest-suite=reftest", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-reftest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/opt-reftest-e10s", + "test-type": "reftest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "RkWH1k6iS06GjAEAOCXZdw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.063Z", + "expires": "2019-04-20T00:09:42.063Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-329", + "takenUntil": "2018-04-20T01:11:37.277Z", + "scheduled": "2018-04-20T00:51:36.795Z", + "started": "2018-04-20T00:51:37.353Z", + "resolved": "2018-04-20T01:05:23.986Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f457c91bba57136d5138" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.063Z", + "deadline": "2018-04-21T00:09:42.063Z", + "expires": "2019-04-20T00:09:42.063Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f457c91bba57136d5138", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.063Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.063Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--reftest-suite=crashtest", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Crashtest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-crashtest-e10s" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-crashtest-e10s", + "test-type": "reftest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "crashtest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "C" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "RumoxqAhTTe7dEE6a_Z3HA", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.896Z", + "expires": "2019-04-20T00:09:40.896Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "T-W1064-MS-155", + "takenUntil": "2018-04-20T01:44:35.237Z", + "scheduled": "2018-04-20T01:07:33.372Z", + "started": "2018-04-20T01:07:33.921Z", + "resolved": "2018-04-20T01:34:54.486Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-win10-64-hw", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.896Z", + "deadline": "2018-04-21T00:09:40.896Z", + "expires": "2019-04-20T00:09:40.896Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.896Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.896Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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 --enable-webrender --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --reftest-suite=reftest --e10s --enable-webrender --total-chunk=4 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-qr/debug-reftest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64-qr/debug-reftest-e10s-1", + "test-type": "reftest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 4 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-qr" + }, + "groupName": "Reftests with e10s", + "tier": 2, + "symbol": "R1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "S9mDheTfRTSBUszU3pPbbw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.898Z", + "expires": "2019-04-20T00:09:40.898Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-07b4fc24a57755383", + "takenUntil": "2018-04-20T01:44:34.579Z", + "scheduled": "2018-04-20T01:07:33.420Z", + "started": "2018-04-20T01:07:33.932Z", + "resolved": "2018-04-20T01:32:36.397Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.898Z", + "deadline": "2018-04-21T00:09:40.898Z", + "expires": "2019-04-20T00:09:40.898Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.898Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.898Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --mochitest-suite=plain-chunked --e10s --total-chunk=5 --this-chunk=1" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-mochitest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows10-64/debug-mochitest-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 1, + "total": 5 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.507Z", + "expires": "2019-04-20T00:09:38.507Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0477c85b74f8a0f01", + "takenUntil": "2018-04-20T00:54:42.726Z", + "scheduled": "2018-04-20T00:09:57.658Z", + "started": "2018-04-20T00:19:19.424Z", + "resolved": "2018-04-20T00:48:28.227Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Nqq-8_PGSsiK-2cJJjuP7w", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.macosx64-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.macosx64-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.macosx64-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.507Z", + "deadline": "2018-04-21T00:09:38.507Z", + "expires": "2019-04-20T00:09:38.507Z", + "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-mozilla-inbound-build-macosx64-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-macosx64-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.507Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Nqq-8_PGSsiK-2cJJjuP7w public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "USE_SCCACHE": "1", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "MacOS X x64 Cross-compile ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-macosx64/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "osx-cross" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Si98EKKgQw-yAXPEMNSe3w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.524Z", + "expires": "2019-04-20T00:09:38.524Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-031f809b43c60f248", + "takenUntil": "2018-04-20T00:29:58.263Z", + "scheduled": "2018-04-20T00:09:57.737Z", + "started": "2018-04-20T00:09:58.342Z", + "resolved": "2018-04-20T00:18:28.429Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.524Z", + "deadline": "2018-04-21T00:09:38.524Z", + "expires": "2019-04-20T00:09:38.524Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/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 wpt -l wpt_manifest -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "web-platform-tests linter ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-mozlint-wptlint-gecko" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-wptlint-gecko" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "W", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "SjyiKiXiS2iyGE6mfqTp6w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.165Z", + "expires": "2019-04-20T00:09:42.165Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-441", + "takenUntil": "2018-04-20T01:45:38.244Z", + "scheduled": "2018-04-20T00:51:36.740Z", + "started": "2018-04-20T00:51:37.214Z", + "resolved": "2018-04-20T01:42:23.127Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.3b71ac496ab4323da704" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.165Z", + "deadline": "2018-04-21T00:09:42.165Z", + "expires": "2019-04-20T00:09:42.165Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.3b71ac496ab4323da704", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.165Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.165Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--xpcshell-suite=xpcshell" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-xpcshell" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/debug-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "SxA7kqK2R4iNjH5zQQ9KqQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.047Z", + "expires": "2019-04-20T00:09:43.047Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-09cebf48b091aad04", + "takenUntil": "2018-04-20T01:29:10.098Z", + "scheduled": "2018-04-20T00:53:45.877Z", + "started": "2018-04-20T00:53:46.555Z", + "resolved": "2018-04-20T01:10:33.419Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.5e2fe68482d55a2e2905" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.047Z", + "deadline": "2018-04-21T00:09:43.047Z", + "expires": "2019-04-20T00:09:43.047Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.5e2fe68482d55a2e2905", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.047Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.047Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.047Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=7", + "--this-chunk=6", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-mochitest-browser-chrome-e10s-6" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/opt-mochitest-browser-chrome-e10s-6", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 6, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "TDSXL9zEQOeVvLt-NP2Anw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.938Z", + "expires": "2019-04-20T00:09:43.938Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-06257b14c910d2307", + "takenUntil": "2018-04-20T01:52:57.329Z", + "scheduled": "2018-04-20T00:46:46.219Z", + "started": "2018-04-20T00:46:46.948Z", + "resolved": "2018-04-20T01:34:51.410Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "anddRnzUShSE_AkmZsSxSQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.3e494c9cf4c53b96947c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.938Z", + "deadline": "2018-04-21T00:09:43.938Z", + "expires": "2019-04-20T00:09:43.938Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.3e494c9cf4c53b96947c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.938Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.938Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.938Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.test_packages.json", + "--test-suite=reftest", + "--total-chunk=28", + "--this-chunk=17", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/opt-reftest-17" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/opt-reftest-17", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 17, + "total": 28 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R", + "collection": { + "opt": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Reftests", + "tier": 1, + "symbol": "R17" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "THsP5ZSmQVmcTmr9k-fNCQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.620Z", + "expires": "2019-04-20T00:09:38.620Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b1fd2ccffd18294f", + "takenUntil": "2018-04-20T01:21:01.024Z", + "scheduled": "2018-04-20T00:09:57.770Z", + "started": "2018-04-20T00:09:59.752Z", + "resolved": "2018-04-20T01:13:59.962Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "A7tJzqugQTiQTixLfy6JaA", + "Puq7J0iESOuAjkz7mlHTNw", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-st-an-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-st-an-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-st-an-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.620Z", + "deadline": "2018-04-21T00:09:38.620Z", + "expires": "2019-04-20T00:09:38.620Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@A7tJzqugQTiQTixLfy6JaA public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.620Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/static-analysis", + "description": "Win64 Static Analysis Opt (clang-cl) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "static-analysis-win64-st-an/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "static-analysis", + "label": "static-analysis-win64-st-an/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "S", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "TLijZce2R8uW1SiOOCq64w", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.541Z", + "expires": "2019-04-20T00:09:38.541Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-07cc937ce649d95f6", + "takenUntil": "2018-04-20T01:27:25.891Z", + "scheduled": "2018-04-20T00:09:57.748Z", + "started": "2018-04-20T00:21:16.295Z", + "resolved": "2018-04-20T01:08:56.258Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Q9P417FTSo6f17e8ptSpwQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-valgrind-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-valgrind-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-valgrind-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.541Z", + "deadline": "2018-04-21T00:09:38.541Z", + "expires": "2019-04-20T00:09:38.541Z", + "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-mozilla-inbound-build-linux64-valgrind-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 72000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "Q9P417FTSo6f17e8ptSpwQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-valgrind-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.541Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build valgrind-test", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "valgrind", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/valgrind", + "description": "Linux64 Valgrind Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "valgrind-linux64-valgrind/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "valgrind", + "label": "valgrind-linux64-valgrind/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "V", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "TNChg86_TxyO2TLIVeDs2g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.884Z", + "expires": "2019-04-20T00:09:44.884Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-034f8cc9238c63d0c", + "takenUntil": "2018-04-20T01:46:15.866Z", + "scheduled": "2018-04-20T00:40:03.279Z", + "started": "2018-04-20T00:40:04.226Z", + "resolved": "2018-04-20T01:38:53.892Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.a86e1fc21623f0a07d53" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.884Z", + "deadline": "2018-04-21T00:09:44.884Z", + "expires": "2019-04-20T00:09:44.884Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.a86e1fc21623f0a07d53", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.884Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.884Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.884Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--allow-software-gl-layers", + "--total-chunk=12", + "--this-chunk=3", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-web-platform-tests-3" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-3" + }, + "extra": { + "chunks": { + "current": 3, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests", + "tier": 1, + "symbol": "wpt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "TNloOIqJRlmrLQNFcqbR6g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.525Z", + "expires": "2019-04-20T00:09:38.525Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-045ba77bf12b942ee", + "takenUntil": "2018-04-20T01:11:50.924Z", + "scheduled": "2018-04-20T00:09:57.740Z", + "started": "2018-04-20T00:21:03.525Z", + "resolved": "2018-04-20T00:53:50.097Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-rusttests-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-rusttests-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.525Z", + "deadline": "2018-04-21T00:09:38.525Z", + "expires": "2019-04-20T00:09:38.525Z", + "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-mozilla-inbound-build-linux64-rusttests-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux64-rusttests-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.525Z", + "type": "directory" + } + }, + "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": "", + "MOZ_AUTOMATION": "1", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "MH_CUSTOM_BUILD_VARIANT_CFG": "rusttests", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_BUILD_DATE": "20180420000800", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "DIST_UPLOADS": "", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MH_BRANCH": "mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "NEED_XVFB": "true", + "USE_SCCACHE": "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", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Rust tests Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-rusttests/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-rusttests/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "TSs7Mx2kSz-tU8YJ2-vZZQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.815Z", + "expires": "2019-04-20T00:09:40.815Z", + "retriesLeft": 5, + "state": "unscheduled", + "runs": [] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "L-2XxaA-Rv-4zoX4qBwhyA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.f71ebc231ce8ee70c3dd" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.815Z", + "deadline": "2018-04-21T00:09:40.815Z", + "expires": "2019-04-20T00:09:40.815Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.f71ebc231ce8ee70c3dd", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:40.815Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=a11y", + "--allow-software-gl-layers", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "a11y", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest a11y run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/opt-mochitest-a11y" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/opt-mochitest-a11y", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "a11y", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "a11y" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "TWQU2x7ESz2lcqAyCOVD6A", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.585Z", + "expires": "2019-04-20T00:09:38.585Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-06fff771ecb7b7bc2", + "takenUntil": "2018-04-20T01:42:04.504Z", + "scheduled": "2018-04-20T00:09:57.732Z", + "started": "2018-04-20T00:20:30.365Z", + "resolved": "2018-04-20T01:26:07.669Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "aD8ER2TJR-miwww4rU1lKA", + "cceGTVnKTAGcFgbiq_s60Q", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.browser-haz-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.browser-haz-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.browser-haz-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.browser-haz-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.browser-haz-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.585Z", + "deadline": "2018-04-21T00:09:38.585Z", + "expires": "2019-04-20T00:09:38.585Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-mozilla-inbound-build-linux64-haz-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": {}, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-mozilla-inbound-build-linux64-haz-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.585Z", + "type": "directory" + } + }, + "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": { + "SCCACHE_DISABLE": "1", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZCONFIG": "browser/config/mozconfigs/linux64/hazards", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/sixgill.tar.xz@cceGTVnKTAGcFgbiq_s60Q public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA", + "MOZ_SCM_LEVEL": "3", + "GECKO_DIR": "/builds/worker/checkouts/gecko", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/hazard", + "description": "Browser Hazard Analysis Linux ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "hazard-linux64-haz/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "hazard", + "label": "hazard-linux64-haz/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "H", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Tdn7tsheSPSaKMP_6iUoVw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.426Z", + "expires": "2019-04-20T00:09:43.426Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0f32bf56f07a1d774", + "takenUntil": "2018-04-20T01:14:37.105Z", + "scheduled": "2018-04-20T00:36:13.761Z", + "started": "2018-04-20T00:39:13.897Z", + "resolved": "2018-04-20T01:08:41.782Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.7d13dc2aa90da44215c4" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.426Z", + "deadline": "2018-04-21T00:09:43.426Z", + "expires": "2019-04-20T00:09:43.426Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.7d13dc2aa90da44215c4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.426Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.426Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.426Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=browser-chrome-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=1", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "browser", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-browser-chrome-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-browser-chrome-e10s-1", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 16 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc1" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "TjAYI532Styvwto_sEVUcQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.515Z", + "expires": "2019-04-20T00:09:38.515Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01b8ff5772cb2ff99", + "takenUntil": "2018-04-20T01:27:37.149Z", + "scheduled": "2018-04-20T00:09:57.757Z", + "started": "2018-04-20T00:21:27.405Z", + "resolved": "2018-04-20T01:12:14.198Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "OrIEcx0KSKmrcil3_vpQ_A", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-ccov-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-ccov-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-ccov-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.515Z", + "deadline": "2018-04-21T00:09:38.515Z", + "expires": "2019-04-20T00:09:38.515Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:relengapi-proxy:tooltool.download.public", + "secrets:get:project/releng/gecko/build/level-3/*", + "docker-worker:cache:level-3-mozilla-inbound-build-linux64-ccov-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-linux64-ccov-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.515Z", + "type": "directory" + } + }, + "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": { + "SCCACHE_DISABLE": "1", + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@OrIEcx0KSKmrcil3_vpQ_A public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "MH_CUSTOM_BUILD_VARIANT_CFG": "code-coverage", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64-CCov Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-ccov/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-ccov/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64-ccov" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "TmXxfm0gRsSNhwIOtBqRVw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.554Z", + "expires": "2019-04-20T00:09:38.554Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0773e7924abd7b834", + "takenUntil": "2018-04-20T00:56:20.452Z", + "scheduled": "2018-04-20T00:09:57.742Z", + "started": "2018-04-20T00:20:57.203Z", + "resolved": "2018-04-20T00:39:19.463Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-noopt-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-noopt-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-noopt-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.554Z", + "deadline": "2018-04-21T00:09:38.554Z", + "expires": "2019-04-20T00:09:38.554Z", + "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-mozilla-inbound-build-linux64-noopt-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-noopt-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.554Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "DIST_TARGET_UPLOADS": "", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "DIST_UPLOADS": "", + "MH_CUSTOM_BUILD_VARIANT_CFG": "noopt-debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 No-optimize Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-noopt/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-noopt/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64-noopt" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "U-_n9IxjRYCnvh90pIyWiQ", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.706Z", + "expires": "2019-04-20T00:09:43.706Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "scl3", + "workerId": "t-yosemite-r7-0027", + "takenUntil": "2018-04-20T01:08:29.593Z", + "scheduled": "2018-04-20T00:48:29.195Z", + "started": "2018-04-20T00:48:29.671Z", + "resolved": "2018-04-20T00:51:18.108Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "SFJk27AJS7Gz_53Wl_1gbw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.8f4fd33e76dcac44cfb0" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.706Z", + "deadline": "2018-04-21T00:09:43.706Z", + "expires": "2019-04-20T00:09:43.706Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.8f4fd33e76dcac44cfb0", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:43.706Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.706Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--verify", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "ondemand", + "--verify", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "SFJk27AJS7Gz_53Wl_1gbw", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/opt-test-verify-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/opt-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "U8TUDqqlThuoApgaIoHdlQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.973Z", + "expires": "2019-04-20T00:09:42.973Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0185cb76da7054837", + "takenUntil": "2018-04-20T01:27:33.838Z", + "scheduled": "2018-04-20T01:07:33.406Z", + "started": "2018-04-20T01:07:33.939Z", + "resolved": "2018-04-20T01:15:05.857Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Nf-NmjbdRJaO_pPhNHATtg" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.973Z", + "deadline": "2018-04-21T00:09:42.973Z", + "expires": "2019-04-20T00:09:42.973Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.973Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.973Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.test_packages.json --download-symbols true --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Nf-NmjbdRJaO_pPhNHATtg", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64/debug-test-verify-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64/debug-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "UDYdXOXESbCWH3aaFhNZgg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.845Z", + "expires": "2019-04-20T00:09:42.845Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-03c6bbab8508319bd", + "takenUntil": "2018-04-20T01:59:02.498Z", + "scheduled": "2018-04-20T01:39:02.087Z", + "started": "2018-04-20T01:39:02.574Z", + "resolved": "2018-04-20T01:44:11.494Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.845Z", + "deadline": "2018-04-21T00:09:42.845Z", + "expires": "2019-04-20T00:09:42.845Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.845Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.845Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\talos_script.py --cfg mozharness\\configs\\talos\\windows_config.py --cfg mozharness\\configs\\talos\\windows_vm_config.py --suite=xperf-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --suite=xperf-e10s --add-option --webServer,localhost --add-option --webServer,localhost --use-talos-json" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos xperf ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-talos-xperf-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows7-32-pgo/opt-talos-xperf-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "x" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "UDndEyktSG-JwYILmyNc5Q", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.040Z", + "expires": "2019-04-20T00:09:42.040Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-014", + "takenUntil": "2018-04-20T01:13:46.191Z", + "scheduled": "2018-04-20T00:53:45.597Z", + "started": "2018-04-20T00:53:46.267Z", + "resolved": "2018-04-20T00:59:29.223Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.651a45b8388cb3bc9b5a" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.040Z", + "deadline": "2018-04-21T00:09:42.040Z", + "expires": "2019-04-20T00:09:42.040Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T00:09:42.040Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T00:09:42.040Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.040Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 1500, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--suite=speedometer-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/integration/mozilla-inbound/raw-file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos speedometer ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-talos-speedometer-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-speedometer-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "sp" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "UMclGh_IRBW7u95vWEY1MQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.711Z", + "expires": "2019-04-20T00:09:44.711Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-08f94ddfbb9aa422b", + "takenUntil": "2018-04-20T01:18:01.025Z", + "scheduled": "2018-04-20T00:40:03.500Z", + "started": "2018-04-20T00:42:37.475Z", + "resolved": "2018-04-20T00:59:35.127Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.012a51057c34dd6b70b7" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.711Z", + "deadline": "2018-04-21T00:09:44.711Z", + "expires": "2019-04-20T00:09:44.711Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.012a51057c34dd6b70b7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.711Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.711Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.711Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=12", + "--this-chunk=12", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-xpcshell-12" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-xpcshell-12" + }, + "extra": { + "chunks": { + "current": 12, + "total": 12 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X12" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "UOPy4slZSSaH4O_JEgNvzg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.458Z", + "expires": "2019-04-20T00:09:38.458Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-048871784f9dae9d2", + "takenUntil": "2018-04-20T01:20:59.796Z", + "scheduled": "2018-04-20T00:09:57.759Z", + "started": "2018-04-20T00:09:59.754Z", + "resolved": "2018-04-20T01:11:45.768Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-rusttests-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-rusttests-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-rusttests-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.458Z", + "deadline": "2018-04-21T00:09:38.458Z", + "expires": "2019-04-20T00:09:38.458Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.458Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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\\rusttests_opt.py --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Opt Rust tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64-rusttests/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-rusttests/opt" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "UQHtsE8HTTezrVmo1Y3ACw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.123Z", + "expires": "2019-04-20T00:09:43.123Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0df59089e00f1d3fd", + "takenUntil": "2018-04-20T01:14:32.503Z", + "scheduled": "2018-04-20T00:36:13.597Z", + "started": "2018-04-20T00:39:09.389Z", + "resolved": "2018-04-20T00:58:05.266Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.dc10023613b3ea330f6d" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.123Z", + "deadline": "2018-04-21T00:09:43.123Z", + "expires": "2019-04-20T00:09:43.123Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.dc10023613b3ea330f6d", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:43.123Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:43.123Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:43.123Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Reftest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-reftest-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-reftest-e10s-8", + "test-type": "reftest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "reftest", + "name": "reftest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "R-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Reftests with e10s", + "tier": 1, + "symbol": "R8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "UeBvaFK0SJe9RSYXGT-vMQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.552Z", + "expires": "2019-04-20T00:09:38.552Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0829ad256e38abeae", + "takenUntil": "2018-04-20T00:39:22.897Z", + "scheduled": "2018-04-20T00:09:57.734Z", + "started": "2018-04-20T00:19:22.979Z", + "resolved": "2018-04-20T00:32:47.916Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Nqq-8_PGSsiK-2cJJjuP7w", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.macosx64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.macosx64-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.macosx64-noopt-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-noopt-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-noopt-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.552Z", + "deadline": "2018-04-21T00:09:38.552Z", + "expires": "2019-04-20T00:09:38.552Z", + "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-mozilla-inbound-build-macosx64-noopt-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-macosx64-noopt-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.552Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "DIST_TARGET_UPLOADS": "", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "MOZ_BUILD_DATE": "20180420000800", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Nqq-8_PGSsiK-2cJJjuP7w public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "DIST_UPLOADS": "", + "MH_CUSTOM_BUILD_VARIANT_CFG": "cross-noopt-debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "MacOS X x64 No-optimize Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-macosx64-noopt/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64-noopt/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "osx-cross-noopt" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "Uejkfo90QPKu9UqihKy8xQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:39.853Z", + "expires": "2019-04-20T00:09:39.853Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-07cafa940b2f9ebe8", + "takenUntil": "2018-04-20T01:38:04.115Z", + "scheduled": "2018-04-20T00:09:57.765Z", + "started": "2018-04-20T00:09:59.756Z", + "resolved": "2018-04-20T01:20:09.004Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-ccov-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-ccov-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-ccov-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:39.853Z", + "deadline": "2018-04-21T00:09:39.853Z", + "expires": "2019-04-20T00:09:39.853Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:39.853Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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\\ccov_debug.py --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Debug Code Coverage ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64-ccov/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64-ccov/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "ccov": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "UlR6IareR5qMzIhHNpPg_w", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.048Z", + "expires": "2019-04-20T00:09:44.048Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-004", + "takenUntil": "2018-04-20T01:31:48.714Z", + "scheduled": "2018-04-20T00:53:45.602Z", + "started": "2018-04-20T00:53:46.273Z", + "resolved": "2018-04-20T01:28:36.903Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.b6e6ab69360f57c56a82" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.048Z", + "deadline": "2018-04-21T00:09:44.048Z", + "expires": "2019-04-20T00:09:44.048Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T00:09:44.048Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T00:09:44.048Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.048Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 2700, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--suite=damp-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/integration/mozilla-inbound/raw-file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos devtools (damp) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-talos-damp-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64/opt-talos-damp-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "damp" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.569Z", + "expires": "2019-04-20T00:09:38.569Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-006b0240edc0d3507", + "takenUntil": "2018-04-20T01:10:13.053Z", + "scheduled": "2018-04-20T00:09:57.745Z", + "started": "2018-04-20T00:19:26.527Z", + "resolved": "2018-04-20T00:51:35.915Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-macosx64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D-gJ6nGtQiiIcsEHjswAyQ", + "D06NaEbzTcO-TgeZNpSGQQ", + "DHHquAF2Q9GdIJshVml-hA", + "GRuLAyf9QDedpJl7YzIang", + "ItY55ltvRh6Mzi_36hlirQ", + "Nqq-8_PGSsiK-2cJJjuP7w", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.macosx64-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.macosx64-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.macosx64-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.macosx64-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.569Z", + "deadline": "2018-04-21T00:09:38.569Z", + "expires": "2019-04-20T00:09:38.569Z", + "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-mozilla-inbound-build-macosx64-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-build-macosx64-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.569Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/cctools.tar.xz@GRuLAyf9QDedpJl7YzIang public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/hfsplus-tools.tar.xz@ItY55ltvRh6Mzi_36hlirQ public/build/dmg.tar.xz@DHHquAF2Q9GdIJshVml-hA public/build/llvm-dsymutil.tar.xz@D-gJ6nGtQiiIcsEHjswAyQ public/build/rustc.tar.xz@Nqq-8_PGSsiK-2cJJjuP7w public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/macosx64/cross-releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_mac_64_cross_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "cross-debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "MacOS X x64 Cross-compile ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-macosx64/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-macosx64/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "osx-cross" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "V3s2hoYJS_6prf5QsVFIrw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.215Z", + "expires": "2019-04-20T00:09:42.215Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0342f6ac48a1a73db", + "takenUntil": "2018-04-20T01:37:45.752Z", + "scheduled": "2018-04-20T00:31:35.163Z", + "started": "2018-04-20T00:31:35.661Z", + "resolved": "2018-04-20T01:30:18.567Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.617a4ddf19337fc8899c" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.215Z", + "deadline": "2018-04-21T00:09:42.215Z", + "expires": "2019-04-20T00:09:42.215Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.617a4ddf19337fc8899c", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.215Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.215Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.215Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=36", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-36" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-36", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 36, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "36" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "V9XHy2jGTnSLEsMXB8AI5Q", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.546Z", + "expires": "2019-04-20T00:09:38.546Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0fb92e981a7e6fa41", + "takenUntil": "2018-04-20T01:20:59.655Z", + "scheduled": "2018-04-20T00:09:57.735Z", + "started": "2018-04-20T00:09:58.225Z", + "resolved": "2018-04-20T01:04:13.207Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win64-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win64-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win64-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win64-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.546Z", + "deadline": "2018-04-21T00:09:38.546Z", + "expires": "2019-04-20T00:09:38.546Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win64/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.546Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win64/opt" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win64/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VB2dtaOzQ8WPIvsR7iQnkQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.594Z", + "expires": "2019-04-20T00:09:38.594Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0659aec09fd0500bc", + "takenUntil": "2018-04-20T01:27:40.460Z", + "scheduled": "2018-04-20T00:09:57.755Z", + "started": "2018-04-20T00:21:29.622Z", + "resolved": "2018-04-20T01:12:36.772Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-pgo", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-pgo", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-pgo", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-pgo", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-pgo", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.594Z", + "deadline": "2018-04-21T00:09:38.594Z", + "expires": "2019-04-20T00:09:38.594Z", + "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-mozilla-inbound-build-linux64-pgo-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-pgo-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.594Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_OPTIONS": "enable-pgo", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py builds/releng_sub_linux_configs/enable_count_ctors.py", + "USE_SCCACHE": "1", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 PGO ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64/pgo" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64/pgo" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "pgo": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VEWG1_PSSaKqgjxBCYEUuA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.504Z", + "expires": "2019-04-20T00:09:38.504Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-0a2ae9f45554eddcd", + "takenUntil": "2018-04-20T01:08:56.681Z", + "scheduled": "2018-04-20T00:09:57.783Z", + "started": "2018-04-20T00:18:09.786Z", + "resolved": "2018-04-20T00:51:23.116Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-android", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "GImkJZEnRLOYE8NMlFUDTQ", + "JE5PzNT_QJyUAPAUH3YI0g", + "OWMKem5GSeeYEfwcgoqEZw", + "U-XQGxP7QEyJte4Iy0rCxA", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "Y7tyhei2TIGK_8N7kyWeaA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.mobile.android-aarch64-opt", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.mobile.android-aarch64-opt", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.mobile.android-aarch64-opt", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.mobile.android-aarch64-opt", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.mobile.android-aarch64-opt", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.504Z", + "deadline": "2018-04-21T00:09:38.504Z", + "expires": "2019-04-20T00:09:38.504Z", + "scopes": [ + "queue:get-artifact:project/gecko/android-ndk/*", + "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-mozilla-inbound-build-android-aarch64-opt-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "JE5PzNT_QJyUAPAUH3YI0g" + }, + "cache": { + "level-3-mozilla-inbound-build-android-aarch64-opt-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts" + }, + "artifacts": { + "public/android/R": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/app/R", + "expires": "2019-04-20T00:09:38.504Z", + "type": "directory" + }, + "public/build/geckoview_example.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview_example/outputs/apk/officialWithGeckoBinariesNoMinApi/debug/geckoview_example-official-withGeckoBinaries-noMinApi-debug.apk", + "expires": "2019-04-20T00:09:38.504Z", + "type": "file" + }, + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.504Z", + "type": "directory" + }, + "public/android/maven": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/maven/", + "expires": "2019-04-20T00:09:38.504Z", + "type": "directory" + }, + "public/build/geckoview-androidTest.apk": { + "path": "/builds/worker/workspace/build/src/obj-firefox/gradle/build/mobile/android/geckoview/outputs/apk/androidTest/officialWithGeckoBinariesNoMinApi/debug/geckoview-official-withGeckoBinaries-noMinApi-debug-androidTest.apk", + "expires": "2019-04-20T00:09:38.504Z", + "type": "file" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/android-gradle-dependencies.tar.xz@Y7tyhei2TIGK_8N7kyWeaA project/gecko/android-ndk/android-ndk.tar.xz@OWMKem5GSeeYEfwcgoqEZw project/gecko/android-sdk/android-sdk-linux.tar.xz@U-XQGxP7QEyJte4Iy0rCxA public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/rustc.tar.xz@GImkJZEnRLOYE8NMlFUDTQ public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GRADLE_USER_HOME": "/builds/worker/workspace/build/src/mobile/android/gradle/dotgradle-offline", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build multi-l10n update", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "mobile/android/config/tooltool-manifests/android/releng.manifest", + "MOZHARNESS_CONFIG": "builds/releng_base_android_64_builds.py disable_signing.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "aarch64", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Android 5.0 AArch64 Opt ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-android-aarch64/opt" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-android-aarch64/opt" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "android-5-0-aarch64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "opt": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "JE5PzNT_QJyUAPAUH3YI0g" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VHUNJ-PRSMGaFPVxtHhvTA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.521Z", + "expires": "2019-04-20T00:09:38.521Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-1", + "workerId": "i-032142c2109b5aa3b", + "takenUntil": "2018-04-20T01:21:00.151Z", + "scheduled": "2018-04-20T00:09:57.775Z", + "started": "2018-04-20T00:09:59.757Z", + "resolved": "2018-04-20T01:01:09.991Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-noopt-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-noopt-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-noopt-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-noopt-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.521Z", + "deadline": "2018-04-21T00:09:38.521Z", + "expires": "2019-04-20T00:09:38.521Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.521Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 7200, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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\\noopt_debug.py --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win32 No-optimize Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win32-noopt/debug" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win32-noopt/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32-noopt" + }, + "tier": 2, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VNwFXoitR-aQTjAoYBT0zQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.201Z", + "expires": "2019-04-20T00:09:44.201Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f0937ed3de9767ef", + "takenUntil": "2018-04-20T01:13:46.444Z", + "scheduled": "2018-04-20T00:53:45.765Z", + "started": "2018-04-20T00:53:46.525Z", + "resolved": "2018-04-20T01:02:54.952Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QY3iXOr5RqmktUVjZ1c3xA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.3abe543fe0a9a2741291" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.201Z", + "deadline": "2018-04-21T00:09:44.201Z", + "expires": "2019-04-20T00:09:44.201Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.3abe543fe0a9a2741291", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.201Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.201Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.201Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.test_packages.json", + "--xpcshell-suite=xpcshell", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=ondemand" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/opt-xpcshell-8" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64/opt-xpcshell-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "opt": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "VQ7ndMBeRomdYgE7mSIZxw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.468Z", + "expires": "2019-04-20T00:09:38.468Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-015dba93e8d2f8f47", + "takenUntil": "2018-04-20T00:55:56.709Z", + "scheduled": "2018-04-20T00:09:57.738Z", + "started": "2018-04-20T00:20:33.260Z", + "resolved": "2018-04-20T00:36:12.865Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.468Z", + "deadline": "2018-04-21T00:09:38.468Z", + "expires": "2019-04-20T00:09:38.468Z", + "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-mozilla-inbound-build-linux64-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 36000, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.468Z", + "type": "directory" + } + }, + "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": { + "MH_BRANCH": "mozilla-inbound", + "MOZ_BUILD_DATE": "20180420000800", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "NEED_XVFB": "true", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "TASKCLUSTER_VOLUMES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py", + "USE_SCCACHE": "1", + "MH_CUSTOM_BUILD_VARIANT_CFG": "debug", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64/debug" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VWrVKSr7QjeUBO-fld_QAw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.438Z", + "expires": "2019-04-20T00:09:44.438Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-06ddfbfc201b9cdfb", + "takenUntil": "2018-04-20T01:15:27.414Z", + "scheduled": "2018-04-20T00:40:03.221Z", + "started": "2018-04-20T00:40:04.221Z", + "resolved": "2018-04-20T01:00:00.682Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.595559f5dbfd94715ae7" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.438Z", + "deadline": "2018-04-21T00:09:44.438Z", + "expires": "2019-04-20T00:09:44.438Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.595559f5dbfd94715ae7", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 3600, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.438Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.438Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.438Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.test_packages.json", + "--mochitest-suite=plain-clipboard,chrome-clipboard,browser-chrome-clipboard", + "--allow-software-gl-layers", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "false", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest clipboard run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-clipboard" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-clipboard", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "clipboard", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "cl" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "VyIYgz5HTmGPAKVXtiBHvA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.530Z", + "expires": "2019-04-20T00:09:38.530Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-006474879fa6f75b8", + "takenUntil": "2018-04-20T00:29:58.248Z", + "scheduled": "2018-04-20T00:09:57.760Z", + "started": "2018-04-20T00:09:58.326Z", + "resolved": "2018-04-20T00:14:01.557Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "dTxz6_swTnepx98yHC_7Mg", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.530Z", + "deadline": "2018-04-21T00:09:38.530Z", + "expires": "2019-04-20T00:09:38.530Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + }, + "maxRunTime": 1800, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "dTxz6_swTnepx98yHC_7Mg" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/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 test-disable -f treeherder" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_SCM_LEVEL": "3", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1" + }, + "features": { + "taskclusterProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/source-test", + "description": "lint test manifests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "source-test-mozlint-test-manifest" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "source-test", + "label": "source-test-mozlint-test-manifest" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "lint" + }, + "tier": 1, + "symbol": "tm", + "jobKind": "test", + "collection": { + "opt": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "VzWLCu2tRdGFFpP1Z3ZDdw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.157Z", + "expires": "2019-04-20T00:09:44.157Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0d340f70865d98c4b", + "takenUntil": "2018-04-20T02:05:01.695Z", + "scheduled": "2018-04-20T01:45:01.232Z", + "started": "2018-04-20T01:45:01.775Z", + "resolved": "2018-04-20T01:54:09.426Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.157Z", + "deadline": "2018-04-21T00:09:44.157Z", + "expires": "2019-04-20T00:09:44.157Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:44.157Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:44.157Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "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 --verify --e10s --no-read-buildbot-config --installer-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --verify --e10s" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of web-platform tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-test-verify-wpt-e10s" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-test-verify-wpt-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify-wpt", + "name": "test-verify-wpt" + }, + "treeherder": { + "machine": { + "platform": "windows10-64" + }, + "tier": 2, + "symbol": "TVw", + "jobKind": "test", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "W-eDBKN1QJCU4oIz6yeQdg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.003Z", + "expires": "2019-04-20T00:09:42.003Z", + "retriesLeft": 5, + "state": "failed", + "runs": [ + { + "runId": 0, + "state": "failed", + "reasonCreated": "scheduled", + "reasonResolved": "failed", + "workerGroup": "us-east-1", + "workerId": "i-068eeefa14187bf10", + "takenUntil": "2018-04-20T02:43:57.007Z", + "scheduled": "2018-04-20T00:36:13.872Z", + "started": "2018-04-20T00:36:14.311Z", + "resolved": "2018-04-20T02:26:01.044Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.04b35a8807b8064f7c4e" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.003Z", + "deadline": "2018-04-21T00:09:42.003Z", + "expires": "2019-04-20T00:09:42.003Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.04b35a8807b8064f7c4e", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.003Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.003Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.003Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--test-type=testharness", + "--e10s", + "--allow-software-gl-layers", + "--enable-webrender", + "--total-chunk=12", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-qr/debug-web-platform-tests-e10s-8" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-qr/debug-web-platform-tests-e10s-8" + }, + "extra": { + "chunks": { + "current": 8, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64-qr" + }, + "groupName": "Web platform tests with e10s", + "tier": 2, + "symbol": "wpt8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "WF0Fp-x4SZGrY2w41jPhPA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.516Z", + "expires": "2019-04-20T00:09:38.516Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0b8e3179ff05f03c8", + "takenUntil": "2018-04-20T00:56:50.111Z", + "scheduled": "2018-04-20T00:09:57.751Z", + "started": "2018-04-20T00:21:26.848Z", + "resolved": "2018-04-20T00:38:29.831Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-linux", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "D06NaEbzTcO-TgeZNpSGQQ", + "VH673vciR3id_ISON1uE5g", + "W8F4pEo0RtGVPGCM_YzLWQ", + "aD8ER2TJR-miwww4rU1lKA", + "fe8l5YnrSUC6ZwIAGh28sA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.linux64-rusttests-debug", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.linux64-rusttests-debug", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.linux64-rusttests-debug", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-rusttests-debug", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.linux64-rusttests-debug", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.516Z", + "deadline": "2018-04-21T00:09:38.516Z", + "expires": "2019-04-20T00:09:38.516Z", + "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-mozilla-inbound-build-linux64-rusttests-debug-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39" + ], + "payload": { + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "D06NaEbzTcO-TgeZNpSGQQ" + }, + "cache": { + "level-3-mozilla-inbound-build-linux64-rusttests-debug-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "artifacts": { + "public/build": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:38.516Z", + "type": "directory" + } + }, + "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": "", + "MOZ_AUTOMATION": "1", + "PERFHERDER_EXTRA_OPTIONS": "rusttests", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "MH_CUSTOM_BUILD_VARIANT_CFG": "rusttests-debug", + "MOZHARNESS_SCRIPT": "mozharness/scripts/fx_desktop_build.py", + "MOZ_BUILD_DATE": "20180420000800", + "MH_BUILD_POOL": "taskcluster", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZHARNESS_ACTIONS": "get-secrets build check-test update", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "DIST_UPLOADS": "", + "MOZ_TOOLCHAINS": "public/build/clang.tar.xz@VH673vciR3id_ISON1uE5g public/build/gcc.tar.xz@aD8ER2TJR-miwww4rU1lKA public/build/rustc.tar.xz@fe8l5YnrSUC6ZwIAGh28sA public/build/sccache2.tar.xz@W8F4pEo0RtGVPGCM_YzLWQ", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MH_BRANCH": "mozilla-inbound", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "NEED_XVFB": "true", + "USE_SCCACHE": "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", + "MOZHARNESS_CONFIG": "builds/releng_base_firefox.py builds/releng_base_linux_64_builds.py" + }, + "features": { + "taskclusterProxy": true, + "relengAPIProxy": true, + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Linux64 Rust tests Debug ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-linux64-rusttests/debug" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "build", + "label": "build-linux64-rusttests/debug" + }, + "extra": { + "index": { + "rank": 0 + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 2, + "symbol": "BR", + "jobKind": "build", + "collection": { + "debug": true + } + }, + "chainOfTrust": { + "inputs": { + "docker-image": "D06NaEbzTcO-TgeZNpSGQQ" + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "WPZ71sllRRmBAXc9gk2Ueg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:45.208Z", + "expires": "2019-04-20T00:09:45.208Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0cf22070a72ee9c1d", + "takenUntil": "2018-04-20T02:24:13.363Z", + "scheduled": "2018-04-20T01:47:11.938Z", + "started": "2018-04-20T01:47:12.355Z", + "resolved": "2018-04-20T02:11:59.566Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "G4HyexZGQfKWd95EmJadeA", + "PIQ_F4Y1SJOSuM8ZzpuCVQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:45.208Z", + "deadline": "2018-04-21T00:09:45.208Z", + "expires": "2019-04-20T00:09:45.208Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:45.208Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:45.208Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/G4HyexZGQfKWd95EmJadeA/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --xpcshell-suite=xpcshell" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "PIQ_F4Y1SJOSuM8ZzpuCVQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "xpcshell test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows10-64-pgo/opt-xpcshell" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-pgo/opt-xpcshell" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "xpcshell", + "name": "xpcshell" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "X", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows10-64" + }, + "groupName": "Xpcshell tests", + "tier": 1, + "symbol": "X" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "WVNXnZwIRDuD5nZ7I3stQw", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.490Z", + "expires": "2019-04-20T00:09:44.490Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-01581e377b34c2c67", + "takenUntil": "2018-04-20T01:33:15.744Z", + "scheduled": "2018-04-20T00:40:03.239Z", + "started": "2018-04-20T00:42:29.341Z", + "resolved": "2018-04-20T01:22:30.010Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.7acc18143aec3a2439b4" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.490Z", + "deadline": "2018-04-21T00:09:44.490Z", + "expires": "2019-04-20T00:09:44.490Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.7acc18143aec3a2439b4", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.490Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.490Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.490Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest media run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-mochitest-media-e10s-2" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux32/debug-mochitest-media-e10s-2", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 2, + "total": 3 + }, + "suite": { + "flavor": "mochitest-media", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "mda2" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:38.622Z", + "expires": "2019-04-20T00:09:38.622Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0305135ec8e65dd7b", + "takenUntil": "2018-04-20T01:55:02.108Z", + "scheduled": "2018-04-20T00:09:57.750Z", + "started": "2018-04-20T00:09:59.755Z", + "resolved": "2018-04-20T01:38:58.629Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-3-b-win2012", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Puq7J0iESOuAjkz7mlHTNw", + "VU1sfjH8TDa7-dnFFsEcxg", + "a9MBxhcaSwet5Pw45wA_kA", + "bNq-VIT-Q12o6nXcaUmYNQ" + ], + "requires": "all-completed", + "routes": [ + "index.gecko.v2.mozilla-inbound.latest.firefox.win32-pgo", + "index.gecko.v2.mozilla-inbound.pushdate.2018.04.20.20180420000800.firefox.win32-pgo", + "index.gecko.v2.mozilla-inbound.pushlog-id.102383.firefox.win32-pgo", + "index.gecko.v2.mozilla-inbound.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-pgo", + "index.gecko.v2.trunk.revision.ecd4ccf11c070978542a43aab32fbe558f703f51.firefox.win32-pgo", + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:38.622Z", + "deadline": "2018-04-21T00:09:38.622Z", + "expires": "2019-04-20T00:09:38.622Z", + "scopes": [], + "payload": { + "env": { + "MOZ_SIMPLE_PACKAGE_NAME": "target", + "MOZ_BUILD_DATE": "20180420000800", + "MOZ_AUTOMATION": "1", + "MOZ_TOOLCHAINS": "public/build/clang.tar.bz2@VU1sfjH8TDa7-dnFFsEcxg public/build/rustc.tar.bz2@a9MBxhcaSwet5Pw45wA_kA public/build/sccache2.tar.bz2@Puq7J0iESOuAjkz7mlHTNw", + "MOZ_SCM_LEVEL": "3", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TOOLTOOL_MANIFEST": "browser/config/tooltool-manifests/win32/releng.manifest", + "GECKO_HEAD_REF": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "USE_SCCACHE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "public/build", + "expires": "2019-04-20T00:09:38.622Z", + "type": "directory", + "name": "public/build" + } + ], + "maxRunTime": 9000, + "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 ecd4ccf11c070978542a43aab32fbe558f703f51 https://hg.mozilla.org/integration/mozilla-inbound .\\build\\src", + ":: TinderboxPrint:ecd4ccf11c070978542a43aab32fbe558f703f51\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 --branch mozilla-inbound --skip-buildbot-actions --work-dir %cd:Z:=z:%\\build --enable-pgo --append-env-variables-from-configs" + ], + "osGroups": [], + "mounts": [], + "features": { + "chainOfTrust": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/build", + "description": "Win32 Opt PGO ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "build-win32/pgo" + }, + "tags": { + "os": "windows", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "build", + "label": "build-win32/pgo" + }, + "extra": { + "index": { + "rank": 1524182880 + }, + "treeherder": { + "machine": { + "platform": "windows2012-32" + }, + "tier": 1, + "symbol": "B", + "jobKind": "build", + "collection": { + "pgo": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ" + } + } + }, + { + "status": { + "taskId": "WwodcjTCT1-ga-3ZrN5MXA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.081Z", + "expires": "2019-04-20T00:09:42.081Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "eu-central-1", + "workerId": "i-0f89856f6b51e055c", + "takenUntil": "2018-04-20T02:16:03.862Z", + "scheduled": "2018-04-20T01:39:02.109Z", + "started": "2018-04-20T01:39:02.581Z", + "resolved": "2018-04-20T01:56:38.906Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win7-32", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "WjBdfnZMQHudBtKOMWWMlQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.081Z", + "deadline": "2018-04-21T00:09:42.081Z", + "expires": "2019-04-20T00:09:42.081Z", + "scopes": [], + "payload": { + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:42.081Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:42.081Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 3600, + "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/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://queue.taskcluster.net/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.test_packages.json --download-symbols ondemand --mochitest-suite=browser-chrome-chunked --e10s --total-chunk=7 --this-chunk=7" + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "WjBdfnZMQHudBtKOMWWMlQ", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest browser-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-7" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-windows7-32-pgo/opt-mochitest-browser-chrome-e10s-7", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "chunks": { + "current": 7, + "total": 7 + }, + "suite": { + "flavor": "browser-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "windows7-32" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "bc7" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "WyGq0IF2SJWogAq5l6LOJw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:43.018Z", + "expires": "2019-04-20T00:09:43.018Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-linux64-ms-009", + "takenUntil": "2018-04-20T01:32:38.575Z", + "scheduled": "2018-04-20T01:12:37.965Z", + "started": "2018-04-20T01:12:38.654Z", + "resolved": "2018-04-20T01:19:29.288Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-linux-talos", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VB2dtaOzQ8WPIvsR7iQnkQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.9948d09847ef1d357cb9" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:43.018Z", + "deadline": "2018-04-21T00:09:43.018Z", + "expires": "2019-04-20T00:09:43.018Z", + "scopes": [], + "payload": { + "artifacts": [ + { + "path": "workspace/build/upload/logs", + "expires": "2019-04-20T00:09:43.018Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "artifacts", + "expires": "2019-04-20T00:09:43.018Z", + "type": "directory", + "name": "public/test" + }, + { + "path": "workspace/build/blobber_upload_dir", + "expires": "2019-04-20T00:09:43.018Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 900, + "command": [ + "./test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.test_packages.json", + "--suite=tps-e10s", + "--add-option", + "--webServer,localhost", + "--add-option", + "--webServer,localhost", + "--use-talos-json", + "--download-symbols=ondemand" + ], + "env": { + "XPCOM_DEBUG_BREAK": "warn", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZHARNESS_SCRIPT": "talos_script.py", + "NEED_XVFB": "false", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/mozharness.zip", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "NO_FAIL_ON_TEST_ERRORS": "1", + "MOZHARNESS_CONFIG": "talos/linux_config.py", + "NO_EM_RESTART": "1", + "MOZ_AUTOMATION": "1", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2" + }, + "context": "https://hg.mozilla.org/integration/mozilla-inbound/raw-file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/scripts/tester/test-linux.sh" + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Talos page scroll (tps) ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-pgo/opt-talos-tps-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "native-engine", + "kind": "test", + "label": "test-linux64-pgo/opt-talos-tps-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "talos", + "name": "talos" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "T-e10s", + "collection": { + "pgo": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Talos performance tests with e10s", + "tier": 1, + "symbol": "tps" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "X3AHTTdARe-lXmPJ1AW5OQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.111Z", + "expires": "2019-04-20T00:09:44.111Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0f27faaaea90d6777", + "takenUntil": "2018-04-20T01:14:36.324Z", + "scheduled": "2018-04-20T00:36:13.644Z", + "started": "2018-04-20T00:39:12.810Z", + "resolved": "2018-04-20T00:56:57.015Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "VQ7ndMBeRomdYgE7mSIZxw", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.774183a46cf8206e12a0" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.111Z", + "deadline": "2018-04-21T00:09:44.111Z", + "expires": "2019-04-20T00:09:44.111Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.774183a46cf8206e12a0", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.111Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.111Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.111Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.test_packages.json", + "--headless", + "--mochitest-suite=plain-chunked", + "--e10s", + "--total-chunk=16", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOCHITEST_FLAVOR": "plain", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "unittests/linux_unittest.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "desktop_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain headless run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64/debug-mochitest-plain-headless-e10s-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-linux64/debug-mochitest-plain-headless-e10s-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 16 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux64" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "h8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "XQCDO5MuQ5mGhUW2Iw2fzQ", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.250Z", + "expires": "2019-04-20T00:09:42.250Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0feadcad77bc19f08", + "takenUntil": "2018-04-20T01:22:21.978Z", + "scheduled": "2018-04-20T00:31:35.011Z", + "started": "2018-04-20T00:31:35.514Z", + "resolved": "2018-04-20T01:09:32.273Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.ae3d06cd68646f669cd1" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.250Z", + "deadline": "2018-04-21T00:09:42.250Z", + "expires": "2019-04-20T00:09:42.250Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.ae3d06cd68646f669cd1", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.250Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.250Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.250Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest", + "--total-chunk=48", + "--this-chunk=42", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "plain", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-42" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-42", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 42, + "total": 48 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "42" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "XSlO8eCOSqmk207iPvC0hg", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.070Z", + "expires": "2019-04-20T00:09:44.070Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-west-2", + "workerId": "i-0dddba8b2065bbb0a", + "takenUntil": "2018-04-20T01:37:45.928Z", + "scheduled": "2018-04-20T00:31:35.137Z", + "started": "2018-04-20T00:31:35.652Z", + "resolved": "2018-04-20T01:29:45.528Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "IioqTyCVRTycPHCYzRf48g", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.75675e20b7ba5f3243a6" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.070Z", + "deadline": "2018-04-21T00:09:44.070Z", + "expires": "2019-04-20T00:09:44.070Z", + "scopes": [ + "docker-worker:relengapi-proxy:tooltool.download.public", + "docker-worker:relengapi-proxy:tooltool.download.internal", + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:capability:device:loopbackVideo", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-tooltool-cache-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.75675e20b7ba5f3243a6", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace", + "level-3-tooltool-cache-v3-697eee6c304d222fdb39": "/builds/worker/tooltool-cache" + }, + "capabilities": { + "devices": { + "loopbackVideo": true + } + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.070Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.070Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.070Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", + "--test-packages-url=https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.test_packages.json", + "--test-suite=mochitest-chrome", + "--total-chunk=8", + "--this-chunk=8", + "--download-symbols=true" + ], + "env": { + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOCHITEST_FLAVOR": "chrome", + "MOZ_AUTOMATION": "1", + "MOZHARNESS_ACTIONS": "get-secrets", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "TOOLTOOL_CACHE": "/builds/worker/tooltool-cache", + "ENABLE_E10S": "false", + "NEED_WINDOW_MANAGER": "true", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_CONFIG": "android/android_common.py android/androidarm_4_3.py", + "MOZHARNESS_SCRIPT": "android_emulator_unittest.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true, + "relengAPIProxy": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-8" + }, + "tags": { + "kind": "test", + "worker-implementation": "docker-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-android-4.3-arm7-api-16/debug-mochitest-chrome-8", + "test-type": "mochitest", + "os": "linux" + }, + "extra": { + "chunks": { + "current": 8, + "total": 8 + }, + "suite": { + "flavor": "chrome", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M", + "collection": { + "debug": true + }, + "machine": { + "platform": "android-4-3-armv7-api16" + }, + "groupName": "Mochitests", + "tier": 1, + "symbol": "c8" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "Xd2IIx6ZSJKwb-Ag7q2-Pw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.829Z", + "expires": "2019-04-20T00:09:40.829Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc1", + "workerId": "t-yosemite-r7-404", + "takenUntil": "2018-04-20T01:11:37.105Z", + "scheduled": "2018-04-20T00:51:36.738Z", + "started": "2018-04-20T00:51:37.183Z", + "resolved": "2018-04-20T00:55:45.535Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.56c9f09282534c07db8a" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.829Z", + "deadline": "2018-04-21T00:09:40.829Z", + "expires": "2019-04-20T00:09:40.829Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.56c9f09282534c07db8a", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.829Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.829Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 10800, + "command": [ + [ + "python2.7", + "-u", + "mozharness/scripts/desktop_unittest.py", + "--cfg", + "mozharness/configs/unittests/mac_unittest.py", + "--verify", + "--e10s", + "--no-read-buildbot-config", + "--installer-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--verify", + "--e10s" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Extra verification of tests modified on this push ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-test-verify-e10s" + }, + "tags": { + "os": "macosx", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-macosx64/debug-test-verify-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "test-verify", + "name": "test-verify" + }, + "treeherder": { + "machine": { + "platform": "osx-10-10" + }, + "tier": 2, + "symbol": "TV", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 0 + } + } + } + }, + { + "status": { + "taskId": "Xn0PS-26SR-hcaZgAaVf4g", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:44.596Z", + "expires": "2019-04-20T00:09:44.596Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-040c302360b8c8aa7", + "takenUntil": "2018-04-20T01:46:13.401Z", + "scheduled": "2018-04-20T00:40:03.230Z", + "started": "2018-04-20T00:40:04.222Z", + "resolved": "2018-04-20T01:40:30.217Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-xlarge", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "QCeThAC2QM2B9VH7jrNopA", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.2bc83553e007ee0a2057" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:44.596Z", + "deadline": "2018-04-21T00:09:44.596Z", + "expires": "2019-04-20T00:09:44.596Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.2bc83553e007ee0a2057", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 7200, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:44.596Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:44.596Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:44.596Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/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": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "web_platform_tests/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "web_platform_tests.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Web platform test run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux32/debug-web-platform-tests-e10s-6" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux32/debug-web-platform-tests-e10s-6" + }, + "extra": { + "chunks": { + "current": 6, + "total": 12 + }, + "suite": { + "flavor": "web-platform-tests", + "name": "web-platform-tests" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "W-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "linux32" + }, + "groupName": "Web platform tests with e10s", + "tier": 1, + "symbol": "wpt6" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "XxJrbNffREm8dwqJ6LtcjA", + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:42.108Z", + "expires": "2019-04-20T00:09:42.108Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "us-east-1", + "workerId": "i-0c72efa3edbb35257", + "takenUntil": "2018-04-20T01:21:07.878Z", + "scheduled": "2018-04-20T00:45:43.248Z", + "started": "2018-04-20T00:45:44.677Z", + "resolved": "2018-04-20T01:07:47.865Z" + } + ] + }, + "task": { + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-linux-large", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "Fr9oIXBgRk69yrDceUPLMQ", + "exyt3MqBR22vEUJ8APZw_g" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.14d7f928cbd6e1b9273f" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:42.108Z", + "deadline": "2018-04-21T00:09:42.108Z", + "expires": "2019-04-20T00:09:42.108Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39", + "docker-worker:cache:level-3-checkouts-v3-697eee6c304d222fdb39" + ], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.14d7f928cbd6e1b9273f", + "onExitStatus": { + "retry": [ + 4 + ] + }, + "maxRunTime": 5400, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "exyt3MqBR22vEUJ8APZw_g" + }, + "cache": { + "level-3-checkouts-v3-697eee6c304d222fdb39": "/builds/worker/checkouts", + "level-3-mozilla-inbound-test-workspace-v3-697eee6c304d222fdb39": "/builds/worker/workspace" + }, + "artifacts": { + "public/logs/": { + "path": "/builds/worker/workspace/build/upload/logs/", + "expires": "2019-04-20T00:09:42.108Z", + "type": "directory" + }, + "public/test": { + "path": "/builds/worker/artifacts/", + "expires": "2019-04-20T00:09:42.108Z", + "type": "directory" + }, + "public/test_info/": { + "path": "/builds/worker/workspace/build/blobber_upload_dir/", + "expires": "2019-04-20T00:09:42.108Z", + "type": "directory" + } + }, + "command": [ + "/builds/worker/bin/run-task", + "--", + "/builds/worker/bin/test-linux.sh", + "--no-read-buildbot-config", + "--installer-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", + "--test-packages-url=https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.test_packages.json", + "--e10s", + "--allow-software-gl-layers" + ], + "env": { + "SCCACHE_DISABLE": "1", + "MOZ_NODE_PATH": "/usr/local/bin/node", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts;/builds/worker/workspace", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "MOZHARNESS_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/mozharness.zip", + "NEED_PULSEAUDIO": "true", + "MOZ_AUTOMATION": "1", + "NEED_WINDOW_MANAGER": "true", + "MOZHARNESS_CONFIG": "marionette/prod_config.py remove_executables.py", + "ENABLE_E10S": "true", + "MOZHARNESS_SCRIPT": "marionette.py", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "MOZILLA_BUILD_URL": "https://queue.taskcluster.net/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2" + }, + "features": { + "taskclusterProxy": true, + "allowPtrace": true + } + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Marionette unittest run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-linux64-asan/opt-marionette-e10s" + }, + "tags": { + "os": "linux", + "createdForUser": "ecoal95@gmail.com", + "worker-implementation": "docker-worker", + "kind": "test", + "label": "test-linux64-asan/opt-marionette-e10s" + }, + "extra": { + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "marionette", + "name": "marionette" + }, + "treeherder": { + "machine": { + "platform": "linux64" + }, + "tier": 1, + "symbol": "Mn", + "jobKind": "test", + "collection": { + "asan": true + } + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + }, + { + "status": { + "taskId": "YWly6ksWQayVB7yc_WcwBw", + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "deadline": "2018-04-21T00:09:40.808Z", + "expires": "2019-04-20T00:09:40.808Z", + "retriesLeft": 5, + "state": "completed", + "runs": [ + { + "runId": 0, + "state": "completed", + "reasonCreated": "scheduled", + "reasonResolved": "completed", + "workerGroup": "mdc2", + "workerId": "t-yosemite-r7-224", + "takenUntil": "2018-04-20T01:45:38.191Z", + "scheduled": "2018-04-20T00:51:36.758Z", + "started": "2018-04-20T00:51:37.340Z", + "resolved": "2018-04-20T01:26:26.504Z" + } + ] + }, + "task": { + "provisionerId": "releng-hardware", + "workerType": "gecko-t-osx-1010", + "schedulerId": "gecko-level-3", + "taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ", + "dependencies": [ + "UxKgYKqwSBiOu3sltapuHA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-inbound.ecd4ccf11c070978542a43aab32fbe558f703f51.102383", + "coalesce.v1.mozilla-inbound.95d871eb8b471615d999" + ], + "priority": "low", + "retries": 5, + "created": "2018-04-20T00:09:40.808Z", + "deadline": "2018-04-21T00:09:40.808Z", + "expires": "2019-04-20T00:09:40.808Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-inbound.95d871eb8b471615d999", + "env": { + "LANG": "en_US.UTF-8", + "SCCACHE_DISABLE": "1", + "SHELL": "/bin/bash", + "MOZ_NO_REMOTE": "1", + "MOZ_HIDE_RESULTS_TABLE": "1", + "MOZ_AUTOMATION": "1", + "XPC_SERVICE_NAME": "0", + "XPCOM_DEBUG_BREAK": "warn", + "XPC_FLAGS": "0x0", + "IDLEIZER_DISABLE_SHUTDOWN": "true", + "LC_ALL": "en_US.UTF-8", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/integration/mozilla-inbound", + "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin", + "NO_EM_RESTART": "1", + "NO_FAIL_ON_TEST_ERRORS": "1", + "GECKO_HEAD_REV": "ecd4ccf11c070978542a43aab32fbe558f703f51", + "MOZ_NODE_PATH": "/usr/local/bin/node" + }, + "artifacts": [ + { + "path": "logs", + "expires": "2019-04-20T00:09:40.808Z", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "expires": "2019-04-20T00:09:40.808Z", + "type": "directory", + "name": "public/test_info" + } + ], + "maxRunTime": 5400, + "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/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", + "--test-packages-url", + "https://queue.taskcluster.net/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.test_packages.json", + "--download-symbols", + "true", + "--mochitest-suite=mochitest-devtools-chrome-chunked", + "--e10s", + "--total-chunk=8", + "--this-chunk=3" + ] + ], + "osGroups": [], + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "UxKgYKqwSBiOu3sltapuHA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "ecoal95@gmail.com", + "source": "https://hg.mozilla.org/integration/mozilla-inbound/file/ecd4ccf11c070978542a43aab32fbe558f703f51/taskcluster/ci/test", + "description": "Mochitest devtools-chrome run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-inbound&revision=ecd4ccf11c070978542a43aab32fbe558f703f51))", + "name": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "ecoal95@gmail.com", + "label": "test-macosx64/debug-mochitest-devtools-chrome-e10s-3", + "test-type": "mochitest", + "os": "macosx" + }, + "extra": { + "chunks": { + "current": 3, + "total": 8 + }, + "suite": { + "flavor": "mochitest-devtools-chrome-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "osx-10-10" + }, + "groupName": "Mochitests with e10s", + "tier": 1, + "symbol": "dt3" + }, + "parent": "bNq-VIT-Q12o6nXcaUmYNQ", + "index": { + "rank": 1524182880 + } + } + } + } + ], + "continuationToken": "1!32!Yk5xLVZJVC1RMTJvNm5YY2FVbVlOUQ--~1!32!WWNQWDBCTHJRTkNUUHVjUk01cmQ0UQ--" +} \ No newline at end of file diff --git a/events/tests/test_workflow.py b/events/tests/test_workflow.py new file mode 100644 index 000000000..0b71ad9c4 --- /dev/null +++ b/events/tests/test_workflow.py @@ -0,0 +1,142 @@ +# -*- coding: utf-8 -*- +import json +import os + +import responses +from libmozevent.bus import MessageBus + +from code_coverage_events.workflow import CodeCoverage + +FIXTURES_DIR = os.path.join(os.path.dirname(__file__), "fixtures") + + +def test_is_coverage_task(mock_taskcluster): + bus = MessageBus() + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + cov_task = {"task": {"metadata": {"name": "build-linux64-ccov"}}} + assert hook.is_coverage_task(cov_task) + + cov_task = {"task": {"metadata": {"name": "build-linux64-ccov/opt"}}} + assert hook.is_coverage_task(cov_task) + + cov_task = {"task": {"metadata": {"name": "build-win64-ccov/debug"}}} + assert hook.is_coverage_task(cov_task) + + nocov_task = {"task": {"metadata": {"name": "test-linux64-ccov/opt-mochitest-1"}}} + assert not hook.is_coverage_task(nocov_task) + + nocov_task = {"task": {"metadata": {"name": "test-linux64/opt-mochitest-1"}}} + assert not hook.is_coverage_task(nocov_task) + + +def test_get_build_task_in_group(mock_taskcluster): + bus = MessageBus() + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + hook.triggered_groups.add("already-triggered-group") + + assert hook.get_build_task_in_group("already-triggered-group") is None + + +def test_parse(mock_taskcluster): + bus = MessageBus() + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + hook.triggered_groups.add("already-triggered-group") + + assert hook.parse({"taskGroupId": "already-triggered-group"}) is None + + +@responses.activate +def test_wrong_branch(mock_taskcluster): + bus = MessageBus() + with open(os.path.join(FIXTURES_DIR, "bNq-VIT-Q12o6nXcaUmYNQ.json")) as f: + responses.add( + responses.GET, + "http://taskcluster.test/api/queue/v1/task-group/bNq-VIT-Q12o6nXcaUmYNQ/list", + json=json.load(f), + status=200, + match_querystring=True, + ) + + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + assert hook.parse({"taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ"}) is None + + +@responses.activate +def test_success(mock_taskcluster): + bus = MessageBus() + with open(os.path.join(FIXTURES_DIR, "RS0UwZahQ_qAcdZzEb_Y9g.json")) as f: + responses.add( + responses.GET, + "http://taskcluster.test/api/queue/v1/task-group/RS0UwZahQ_qAcdZzEb_Y9g/list", + json=json.load(f), + status=200, + match_querystring=True, + ) + + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + assert hook.parse({"taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g"}) == [ + { + "REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "REVISION": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", + } + ] + + +@responses.activate +def test_success_windows(mock_taskcluster): + bus = MessageBus() + with open(os.path.join(FIXTURES_DIR, "MibGDsa4Q7uFNzDf7EV6nw.json")) as f: + responses.add( + responses.GET, + "http://taskcluster.test/api/queue/v1/task-group/MibGDsa4Q7uFNzDf7EV6nw/list", + json=json.load(f), + status=200, + match_querystring=True, + ) + + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + assert hook.parse({"taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw"}) == [ + { + "REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "REVISION": "63519bfd42ee379f597c0357af2e712ec3cd9f50", + } + ] + + +@responses.activate +def test_success_try(mock_taskcluster): + bus = MessageBus() + with open(os.path.join(FIXTURES_DIR, "FG3goVnCQfif8ZEOaM_4IA.json")) as f: + responses.add( + responses.GET, + "http://taskcluster.test/api/queue/v1/task-group/FG3goVnCQfif8ZEOaM_4IA/list", + json=json.load(f), + status=200, + match_querystring=True, + ) + + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + + assert hook.parse({"taskGroupId": "FG3goVnCQfif8ZEOaM_4IA"}) == [ + { + "REPOSITORY": "https://hg.mozilla.org/try", + "REVISION": "066cb18ba95a7efe144e729713c429e422d9f95b", + } + ] + + +def test_hook_group(mock_taskcluster): + bus = MessageBus() + hook = CodeCoverage("services-staging-codecoverage/bot", "project-releng", bus) + assert hook.group_id == "project-releng" + assert hook.hook_id == "services-staging-codecoverage/bot" + + hook = CodeCoverage("anotherHook", "anotherProject", bus) + assert hook.group_id == "anotherProject" + assert hook.hook_id == "anotherHook" From d09d8bc2694267fe3564926de3d7fd7196adb108 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Tue, 27 Aug 2019 12:12:59 +0200 Subject: [PATCH 03/13] events: Fix taskcluster tests --- .taskcluster.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.taskcluster.yml b/.taskcluster.yml index e291ea1b7..3e2d0efb4 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -128,7 +128,7 @@ tasks: - sh - -lxce - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && - cd /src/events && pip install --quiet . && pip install --quiet -r requirements-dev.txt && + cd /src/events && pip install -q -r requirements.txt && pip install --quiet . && pip install --quiet -r requirements-dev.txt && pytest -v" metadata: name: "Code Coverage Events checks: unit tests" From d981c7fe0b87d293bb9efe7d60e81231c63844be Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Tue, 27 Aug 2019 12:21:41 +0200 Subject: [PATCH 04/13] events: Add docker build & deploy on heroku --- .taskcluster.yml | 71 +++++++++++++++++++++++++++++++++++++++++++++++ events/Dockerfile | 7 +++++ 2 files changed, 78 insertions(+) create mode 100644 events/Dockerfile diff --git a/.taskcluster.yml b/.taskcluster.yml index 3e2d0efb4..36557b79e 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -218,6 +218,47 @@ tasks: owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage + - taskId: {$eval: as_slugid("events_build")} + created: {$fromNow: ''} + deadline: {$fromNow: '1 hour'} + provisionerId: aws-provisioner-v1 + workerType: releng-svc + dependencies: + - {$eval: as_slugid("check_lint")} + - {$eval: as_slugid("events_check_tests")} + payload: + capabilities: + privileged: true + maxRunTime: 3600 + image: "${taskboot_image}" + env: + GIT_REPOSITORY: ${repository} + GIT_REVISION: ${head_rev} + command: + - taskboot + - build + - --image + - mozilla/code-coverage + - --tag + - "events-${channel}" + - --tag + - "events-${head_rev}" + - --write + - /events.tar + - events/Dockerfile + artifacts: + public/code-coverage-events.tar: + expires: {$fromNow: '2 weeks'} + path: /events.tar + type: file + scopes: + - docker-worker:capability:privileged + metadata: + name: Code Coverage Events docker build + description: Build docker image with taskboot + owner: bastien@mozilla.com + source: https://github.com/mozilla/code-coverage + - taskId: {$eval: as_slugid("addon_build")} provisionerId: aws-provisioner-v1 workerType: github-worker @@ -302,6 +343,36 @@ tasks: owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage + - $if: 'channel in ["testing", "production"]' + then: + taskId: {$eval: as_slugid("events_deploy")} + created: {$fromNow: ''} + deadline: {$fromNow: '1 hour'} + provisionerId: aws-provisioner-v1 + workerType: github-worker + dependencies: + - {$eval: as_slugid("events_build")} + payload: + features: + taskclusterProxy: true + maxRunTime: 3600 + image: "${taskboot_image}" + command: + - taskboot + - deploy-heroku + - --heroku-app + - "code-coverage-events-${channel}" + - worker:public/code-coverage-events.tar + env: + TASKCLUSTER_SECRET: "project/relman/code-coverage/deploy-${channel}" + scopes: + - "secrets:get:project/relman/code-coverage/deploy-${channel}" + metadata: + name: "Code Coverage Events deployment (${channel})" + description: Deploy docker image on Heroku + owner: bastien@mozilla.com + source: https://github.com/mozilla/code-coverage + - $if: 'channel in ["testing", "production"]' then: taskId: {$eval: as_slugid("bot_deploy")} diff --git a/events/Dockerfile b/events/Dockerfile new file mode 100644 index 000000000..fcd2ffeae --- /dev/null +++ b/events/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3 + +ADD events /src + +RUN cd /src && pip install -r requirements.txt && python setup.py install + +CMD ["code-coverage-events"] From ffb58fcdbc1eeeb342d7f45c2d878b63f812dc3d Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Tue, 27 Aug 2019 16:32:11 +0200 Subject: [PATCH 05/13] events: Use updated libmozevent --- events/code_coverage_events/cli.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/events/code_coverage_events/cli.py b/events/code_coverage_events/cli.py index d692b17b6..800081d26 100644 --- a/events/code_coverage_events/cli.py +++ b/events/code_coverage_events/cli.py @@ -1,6 +1,5 @@ # -*- coding: utf-8 -*- import argparse -import asyncio import os import structlog @@ -9,7 +8,7 @@ from libmozevent.log import init_logger from libmozevent.monitoring import Monitoring from libmozevent.pulse import PulseListener -from libmozevent.pulse import run_consumer +from libmozevent.utils import run_tasks from code_coverage_events import QUEUE_MONITORING from code_coverage_events import QUEUE_PULSE @@ -77,7 +76,7 @@ def run(self): ] # Run all tasks concurrently - run_consumer(asyncio.gather(*consumers)) + run_tasks(consumers) def main(): From 56b5f680c1bce94ea88232883783b4e3c0cbbce8 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 29 Aug 2019 11:34:18 +0200 Subject: [PATCH 06/13] Use last bugfixes, log + async TC tasks loading. --- events/code_coverage_events/workflow.py | 37 ++++++++++++++++--------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/events/code_coverage_events/workflow.py b/events/code_coverage_events/workflow.py index 35c632421..a7e454596 100644 --- a/events/code_coverage_events/workflow.py +++ b/events/code_coverage_events/workflow.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +import asyncio + import requests import structlog from libmozevent import taskcluster_config @@ -35,7 +37,7 @@ async def run(self): payload = await self.bus.receive(QUEUE_PULSE) # Parse the payload to extract a new task's environment - envs = self.parse(payload) + envs = await self.parse(payload) if envs is None: continue @@ -56,7 +58,7 @@ def is_coverage_task(self, task): for s in ["build-linux64-ccov", "build-win64-ccov"] ) - def get_build_task_in_group(self, group_id): + async def get_build_task_in_group(self, group_id): if group_id in self.triggered_groups: logger.info( "Received duplicated groupResolved notification", group=group_id @@ -64,6 +66,9 @@ def get_build_task_in_group(self, group_id): return None def maybe_trigger(tasks): + logger.info( + "Checking code coverage tasks", group_id=group_id, nb=len(tasks) + ) for task in tasks: if self.is_coverage_task(task): self.triggered_groups.add(group_id) @@ -71,30 +76,36 @@ def maybe_trigger(tasks): return None - def retrieve_coverage_task(limit=200): - reply = self.queue.listTaskGroup(group_id, limit=limit) - task = maybe_trigger(reply["tasks"]) + def load_tasks(limit=200, continuationToken=None): + query = {"limit": limit} + if continuationToken is not None: + query["continuationToken"] = continuationToken + reply = retry(lambda: self.queue.listTaskGroup(group_id, query=query)) + return maybe_trigger(reply["tasks"]), reply.get("continuationToken") - while task is None and reply.get("continuationToken") is not None: - reply = self.queue.listTaskGroup( - group_id, limit=limit, continuationToken=reply["continuationToken"] - ) - task = maybe_trigger(reply["tasks"]) + async def retrieve_coverage_task(): + task, token = load_tasks() + + while task is None and token is not None: + task, token = load_tasks(continuationToken=token) + + # Let other tasks run on long batches + await asyncio.sleep(2) return task try: - return retry(retrieve_coverage_task) + return await retrieve_coverage_task() except requests.exceptions.HTTPError: return None - def parse(self, body): + async def parse(self, body): """ Extract revisions from payload """ taskGroupId = body["taskGroupId"] - build_task = self.get_build_task_in_group(taskGroupId) + build_task = await self.get_build_task_in_group(taskGroupId) if build_task is None: return None From 503272d8c9034a8a9ac6b61e08a6ee07ca450d1b Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 29 Aug 2019 12:30:48 +0200 Subject: [PATCH 07/13] Fix async unit tests --- events/requirements-dev.txt | 1 + events/tests/test_workflow.py | 79 +++++++++++++++-------------------- 2 files changed, 34 insertions(+), 46 deletions(-) diff --git a/events/requirements-dev.txt b/events/requirements-dev.txt index 208ec64cd..e50138bb9 100644 --- a/events/requirements-dev.txt +++ b/events/requirements-dev.txt @@ -1,2 +1,3 @@ pytest +pytest-asyncio responses diff --git a/events/tests/test_workflow.py b/events/tests/test_workflow.py index 0b71ad9c4..042d7c270 100644 --- a/events/tests/test_workflow.py +++ b/events/tests/test_workflow.py @@ -1,7 +1,9 @@ # -*- coding: utf-8 -*- +import asyncio import json import os +import pytest import responses from libmozevent.bus import MessageBus @@ -30,56 +32,59 @@ def test_is_coverage_task(mock_taskcluster): assert not hook.is_coverage_task(nocov_task) -def test_get_build_task_in_group(mock_taskcluster): +@pytest.mark.asyncio +async def test_get_build_task_in_group(mock_taskcluster): bus = MessageBus() hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) hook.triggered_groups.add("already-triggered-group") - assert hook.get_build_task_in_group("already-triggered-group") is None + assert await hook.get_build_task_in_group("already-triggered-group") is None -def test_parse(mock_taskcluster): +@pytest.mark.asyncio +async def test_parse(mock_taskcluster): bus = MessageBus() hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) hook.triggered_groups.add("already-triggered-group") - assert hook.parse({"taskGroupId": "already-triggered-group"}) is None + assert await hook.parse({"taskGroupId": "already-triggered-group"}) is None + + +def run_async_parser(hook, group_id): + """ + Helper to run the asynchronous parser using responses in the same event loop + """ + + async def _check(): + with open(os.path.join(FIXTURES_DIR, f"{group_id}.json")) as f: + responses.add( + responses.GET, + f"http://taskcluster.test/api/queue/v1/task-group/{group_id}/list", + json=json.load(f), + status=200, + ) + return await hook.parse({"taskGroupId": group_id}) + + loop = asyncio.new_event_loop() + return loop.run_until_complete(_check()) @responses.activate def test_wrong_branch(mock_taskcluster): bus = MessageBus() - with open(os.path.join(FIXTURES_DIR, "bNq-VIT-Q12o6nXcaUmYNQ.json")) as f: - responses.add( - responses.GET, - "http://taskcluster.test/api/queue/v1/task-group/bNq-VIT-Q12o6nXcaUmYNQ/list", - json=json.load(f), - status=200, - match_querystring=True, - ) - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - assert hook.parse({"taskGroupId": "bNq-VIT-Q12o6nXcaUmYNQ"}) is None + assert run_async_parser(hook, "bNq-VIT-Q12o6nXcaUmYNQ") is None @responses.activate def test_success(mock_taskcluster): bus = MessageBus() - with open(os.path.join(FIXTURES_DIR, "RS0UwZahQ_qAcdZzEb_Y9g.json")) as f: - responses.add( - responses.GET, - "http://taskcluster.test/api/queue/v1/task-group/RS0UwZahQ_qAcdZzEb_Y9g/list", - json=json.load(f), - status=200, - match_querystring=True, - ) - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - assert hook.parse({"taskGroupId": "RS0UwZahQ_qAcdZzEb_Y9g"}) == [ + assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g") == [ { "REPOSITORY": "https://hg.mozilla.org/mozilla-central", "REVISION": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", @@ -90,18 +95,9 @@ def test_success(mock_taskcluster): @responses.activate def test_success_windows(mock_taskcluster): bus = MessageBus() - with open(os.path.join(FIXTURES_DIR, "MibGDsa4Q7uFNzDf7EV6nw.json")) as f: - responses.add( - responses.GET, - "http://taskcluster.test/api/queue/v1/task-group/MibGDsa4Q7uFNzDf7EV6nw/list", - json=json.load(f), - status=200, - match_querystring=True, - ) - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - assert hook.parse({"taskGroupId": "MibGDsa4Q7uFNzDf7EV6nw"}) == [ + assert run_async_parser(hook, "MibGDsa4Q7uFNzDf7EV6nw") == [ { "REPOSITORY": "https://hg.mozilla.org/mozilla-central", "REVISION": "63519bfd42ee379f597c0357af2e712ec3cd9f50", @@ -112,18 +108,9 @@ def test_success_windows(mock_taskcluster): @responses.activate def test_success_try(mock_taskcluster): bus = MessageBus() - with open(os.path.join(FIXTURES_DIR, "FG3goVnCQfif8ZEOaM_4IA.json")) as f: - responses.add( - responses.GET, - "http://taskcluster.test/api/queue/v1/task-group/FG3goVnCQfif8ZEOaM_4IA/list", - json=json.load(f), - status=200, - match_querystring=True, - ) - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - assert hook.parse({"taskGroupId": "FG3goVnCQfif8ZEOaM_4IA"}) == [ + assert run_async_parser(hook, "FG3goVnCQfif8ZEOaM_4IA") == [ { "REPOSITORY": "https://hg.mozilla.org/try", "REVISION": "066cb18ba95a7efe144e729713c429e422d9f95b", @@ -133,8 +120,8 @@ def test_success_try(mock_taskcluster): def test_hook_group(mock_taskcluster): bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-releng", bus) - assert hook.group_id == "project-releng" + hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) + assert hook.group_id == "project-test" assert hook.hook_id == "services-staging-codecoverage/bot" hook = CodeCoverage("anotherHook", "anotherProject", bus) From 159c0c53b1e4025248d1cf8743ab398127655e19 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Wed, 4 Sep 2019 15:51:27 +0200 Subject: [PATCH 08/13] Downgrade batch sleep to 0 --- events/code_coverage_events/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/code_coverage_events/workflow.py b/events/code_coverage_events/workflow.py index a7e454596..4aade1d2a 100644 --- a/events/code_coverage_events/workflow.py +++ b/events/code_coverage_events/workflow.py @@ -90,7 +90,7 @@ async def retrieve_coverage_task(): task, token = load_tasks(continuationToken=token) # Let other tasks run on long batches - await asyncio.sleep(2) + await asyncio.sleep(0) return task From cf46fadddf63bac21794baa5221b23b0ccc89f38 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Wed, 4 Sep 2019 16:19:11 +0200 Subject: [PATCH 09/13] Use mozilla/libmozevent --- events/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/requirements.txt b/events/requirements.txt index 8ca233c91..01669bf96 100644 --- a/events/requirements.txt +++ b/events/requirements.txt @@ -1 +1 @@ -https://github.com/La0/libmozevent/archive/taskcluster.zip#egg=libmozevent +https://github.com/mozilla/libmozevent/archive/taskcluster.zip#egg=libmozevent From 94ed85b164b158c170673b6d4f543cdd547549eb Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 5 Sep 2019 12:43:52 +0200 Subject: [PATCH 10/13] Use libmozevent from PyPi --- events/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/requirements.txt b/events/requirements.txt index 01669bf96..4c95774ee 100644 --- a/events/requirements.txt +++ b/events/requirements.txt @@ -1 +1 @@ -https://github.com/mozilla/libmozevent/archive/taskcluster.zip#egg=libmozevent +libmozevent==1.0.0 From e4d4aa21fe08b844b88df33f9dabd4c2281fd1c9 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Mon, 9 Sep 2019 17:12:43 +0200 Subject: [PATCH 11/13] Simplify read_requirements --- events/setup.py | 30 +++++++++--------------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/events/setup.py b/events/setup.py index 9d5ce5365..5a64b60ee 100644 --- a/events/setup.py +++ b/events/setup.py @@ -3,31 +3,19 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +import os.path + import setuptools +here = os.path.dirname(__file__) + def read_requirements(file_): - lines = [] - with open(file_) as f: - for line in f.readlines(): - line = line.strip() - if ( - line.startswith("-e ") - or line.startswith("http://") - or line.startswith("https://") - ): - extras = "" - if "[" in line: - extras = "[" + line.split("[")[1].split("]")[0] + "]" - line = line.split("#")[1].split("egg=")[1] + extras - elif line == "" or line.startswith("#") or line.startswith("-"): - continue - line = line.split("#")[0].strip() - lines.append(line) - return sorted(list(set(lines))) - - -with open("VERSION") as f: + with open(os.path.join(here, file_)) as f: + return sorted(list(set(line.split("#")[0].strip() for line in f))) + + +with open(os.path.join(here, "VERSION")) as f: VERSION = f.read().strip() From 5ea7ce0b6f5cc8a72c20659e287de6fcd53c3c4b Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Mon, 9 Sep 2019 17:46:06 +0200 Subject: [PATCH 12/13] Slim image --- events/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events/Dockerfile b/events/Dockerfile index fcd2ffeae..f6e86af3d 100644 --- a/events/Dockerfile +++ b/events/Dockerfile @@ -1,7 +1,7 @@ -FROM python:3 +FROM python:3-slim ADD events /src -RUN cd /src && pip install -r requirements.txt && python setup.py install +RUN cd /src && pip install --disable-pip-version-check --no-cache-dir -r requirements.txt && python setup.py install CMD ["code-coverage-events"] From 8c89c70923f1a27ca01449c1d0dab0588c1a9803 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Mon, 9 Sep 2019 17:49:10 +0200 Subject: [PATCH 13/13] Move Events in workflow --- events/code_coverage_events/cli.py | 55 +------------------------ events/code_coverage_events/workflow.py | 51 +++++++++++++++++++++++ 2 files changed, 52 insertions(+), 54 deletions(-) diff --git a/events/code_coverage_events/cli.py b/events/code_coverage_events/cli.py index 800081d26..ea3481abe 100644 --- a/events/code_coverage_events/cli.py +++ b/events/code_coverage_events/cli.py @@ -4,15 +4,9 @@ import structlog from libmozevent import taskcluster_config -from libmozevent.bus import MessageBus from libmozevent.log import init_logger -from libmozevent.monitoring import Monitoring -from libmozevent.pulse import PulseListener -from libmozevent.utils import run_tasks -from code_coverage_events import QUEUE_MONITORING -from code_coverage_events import QUEUE_PULSE -from code_coverage_events.workflow import CodeCoverage +from code_coverage_events.workflow import Events logger = structlog.get_logger(__name__) @@ -32,53 +26,6 @@ def parse_cli(): return parser.parse_args() -class Events(object): - """ - Listen to pulse events and trigger new code coverage tasks - """ - - def __init__(self): - # Create message bus shared amongst process - self.bus = MessageBus() - - # Build code coverage workflow - self.workflow = CodeCoverage( - taskcluster_config.secrets["hook_id"], - taskcluster_config.secrets["hook_group_id"], - self.bus, - ) - - # Setup monitoring for newly created tasks - self.monitoring = Monitoring( - QUEUE_MONITORING, taskcluster_config.secrets["admins"], 7 * 3600 - ) - self.monitoring.register(self.bus) - - # Create pulse listener for code coverage - self.pulse = PulseListener( - QUEUE_PULSE, - "exchange/taskcluster-queue/v1/task-group-resolved", - "#", - taskcluster_config.secrets["pulse_user"], - taskcluster_config.secrets["pulse_password"], - ) - self.pulse.register(self.bus) - - def run(self): - - consumers = [ - # Code coverage main workflow - self.workflow.run(), - # Add monitoring task - self.monitoring.run(), - # Add pulse task - self.pulse.run(), - ] - - # Run all tasks concurrently - run_tasks(consumers) - - def main(): args = parse_cli() taskcluster_config.auth(args.taskcluster_client_id, args.taskcluster_access_token) diff --git a/events/code_coverage_events/workflow.py b/events/code_coverage_events/workflow.py index 4aade1d2a..4358189a1 100644 --- a/events/code_coverage_events/workflow.py +++ b/events/code_coverage_events/workflow.py @@ -5,7 +5,11 @@ import requests import structlog from libmozevent import taskcluster_config +from libmozevent.bus import MessageBus +from libmozevent.monitoring import Monitoring +from libmozevent.pulse import PulseListener from libmozevent.utils import retry +from libmozevent.utils import run_tasks from code_coverage_events import QUEUE_MONITORING from code_coverage_events import QUEUE_PULSE @@ -134,3 +138,50 @@ async def parse(self, body): "REVISION": build_task["task"]["payload"]["env"]["GECKO_HEAD_REV"], } ] + + +class Events(object): + """ + Listen to pulse events and trigger new code coverage tasks + """ + + def __init__(self): + # Create message bus shared amongst process + self.bus = MessageBus() + + # Build code coverage workflow + self.workflow = CodeCoverage( + taskcluster_config.secrets["hook_id"], + taskcluster_config.secrets["hook_group_id"], + self.bus, + ) + + # Setup monitoring for newly created tasks + self.monitoring = Monitoring( + QUEUE_MONITORING, taskcluster_config.secrets["admins"], 7 * 3600 + ) + self.monitoring.register(self.bus) + + # Create pulse listener for code coverage + self.pulse = PulseListener( + QUEUE_PULSE, + "exchange/taskcluster-queue/v1/task-group-resolved", + "#", + taskcluster_config.secrets["pulse_user"], + taskcluster_config.secrets["pulse_password"], + ) + self.pulse.register(self.bus) + + def run(self): + + consumers = [ + # Code coverage main workflow + self.workflow.run(), + # Add monitoring task + self.monitoring.run(), + # Add pulse task + self.pulse.run(), + ] + + # Run all tasks concurrently + run_tasks(consumers)