diff --git a/.dockerignore b/.dockerignore index 7a1fb6f33..fd0b375d1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,2 @@ .git -frontend/ -addon/ */tests/ diff --git a/.flake8 b/.flake8 index bc0225179..03cf122f5 100644 --- a/.flake8 +++ b/.flake8 @@ -1,4 +1,3 @@ [flake8] -ignore = E203,W503 -max-line-length = 159 -exclude = .git,__pycache__ +ignore = E101, E111, E114, E115, E116, E117, E121, E122, E123, E124, E125, E126, E127, E128, E129, E131, E133, E2, E3, E5, E501, E701, E702, E703, E704, W1, W2, W3, W503, W504 +exclude = .git,__pycache__ \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5227f53bf..848589e30 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,58 +1,16 @@ version: 2 updates: -- package-ecosystem: npm - directory: "/addon" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - addon -- package-ecosystem: pip - directory: "/bot" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - bot -- package-ecosystem: docker - directory: "/backend" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - backend -- package-ecosystem: docker - directory: "/bot" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - bot -- package-ecosystem: pip - directory: "/tools" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - tools -- package-ecosystem: pip - directory: "/events" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - events -- package-ecosystem: pip - directory: "/backend" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - backend -- package-ecosystem: npm - directory: "/frontend" - schedule: - interval: weekly - open-pull-requests-limit: 99 - labels: - - frontend + - package-ecosystem: pip + directory: "/bot" + schedule: + interval: weekly + open-pull-requests-limit: 99 + labels: + - bot + - package-ecosystem: docker + directory: "/bot" + schedule: + interval: weekly + open-pull-requests-limit: 99 + labels: + - bot diff --git a/.isort.cfg b/.isort.cfg index 2673af0b1..faba5d7d0 100644 --- a/.isort.cfg +++ b/.isort.cfg @@ -1,6 +1,8 @@ [settings] -known_first_party = code_coverage_backend,code_coverage_bot,code_coverage_events,code_coverage_tools,conftest,firefox_code_coverage -known_third_party = connexion,datadog,dateutil,fakeredis,flask,flask_cors,flask_talisman,google,hglib,jsone,jsonschema,libmozdata,libmozevent,logbook,magic,pytest,pytz,raven,redis,requests,responses,setuptools,structlog,taskcluster,tenacity,werkzeug,yaml,zstandard +known_first_party = 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,magic,pytest,pytz,raven,redis,requests,responses,setuptools,structlog,taskcluster,tenacity,tqdm,werkzeug,yaml,zstandard force_single_line = True default_section=FIRSTPARTY -line_length=159 +line_length=88 +include_trailing_comma=True +multi_line_output=3 \ No newline at end of file diff --git a/.mergify.yml b/.mergify.yml deleted file mode 100644 index 6e9014f7a..000000000 --- a/.mergify.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -pull_request_rules: - - name: automatic merge for Dependabot pull requests - conditions: - - author~=^dependabot(|-preview)\[bot\]$ - - status-success=Community-TC (pull_request) - - status-success=FirefoxCI (pull_request) - - base=master - - "#approved-reviews-by>=1" - actions: - merge: - method: squash - strict: smart+fasttrack - - - name: Automatic merge on approval for contributors - conditions: - - author!=@mozilla/sallt - - status-success=Community-TC (pull_request) - - status-success=FirefoxCI (pull_request) - - base=master - - "#approved-reviews-by>=1" - actions: - merge: - method: squash - strict: smart+fasttrack diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e32e99ee4..e837e96af 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,27 +1,17 @@ repos: - - repo: https://github.com/asottile/seed-isort-config - rev: v2.1.1 + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.7.0 hooks: - - id: seed-isort-config - - repo: https://github.com/pre-commit/mirrors-isort - rev: v4.3.21 - hooks: - - id: isort - - repo: https://github.com/ambv/black - rev: stable - hooks: - - id: black - - repo: https://gitlab.com/pycqa/flake8 - rev: 3.8.2 + - id: ruff + args: [--fix] + - id: ruff-format + - repo: https://github.com/pre-commit/mirrors-prettier + rev: v3.1.0 hooks: - - id: flake8 - additional_dependencies: - - 'flake8-coding==1.3.1' - - 'flake8-copyright==0.2.2' - - 'flake8-debugger==3.1.0' - - 'flake8-mypy==17.8.0' + - id: prettier + exclude: fixtures|mocks - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.1.0 + rev: v5.0.0 hooks: - id: check-ast - id: check-docstring-first @@ -33,23 +23,52 @@ repos: - id: check-yaml - id: mixed-line-ending - id: name-tests-test - args: ['--django'] + args: ["--django"] - id: check-json - id: requirements-txt-fixer + - id: check-vcs-permalinks - repo: https://github.com/codespell-project/codespell - rev: v1.17.1 + rev: v2.3.0 hooks: - id: codespell exclude_types: [json] args: [-L connexion] - repo: https://github.com/marco-c/taskcluster_yml_validator - rev: v0.0.7 + rev: v0.0.12 hooks: - id: taskcluster_yml - repo: https://github.com/asottile/yesqa - rev: v1.1.0 + rev: v1.5.0 hooks: - id: yesqa + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.12.1 + hooks: + - id: mypy + name: mypy-bot + files: ^bot/ + entry: mypy bot/ + pass_filenames: false + additional_dependencies: + - types-requests==0.1.11 + - types-pytz==2022.6.0.1 + - types-PyYAML==5.4.0 + - id: mypy + name: mypy-events + files: ^events/ + entry: mypy events/ + pass_filenames: false + additional_dependencies: + - types-requests==0.1.11 + - id: mypy + name: mypy-tools + files: ^tools/ + entry: mypy tools/ + pass_filenames: false + additional_dependencies: + - types-requests==0.1.11 + - types-setuptools==67.6.0.0 + - types-pytz==2022.6.0.1 - repo: meta hooks: - id: check-useless-excludes diff --git a/.taskcluster.yml b/.taskcluster.yml index 321da300c..930de1c67 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -1,4 +1,5 @@ version: 1 +reporting: checks-v1 policy: pullRequests: public tasks: @@ -33,63 +34,44 @@ tasks: then: $if: 'event.ref in ["refs/heads/testing", "refs/heads/production"]' then: ${event.ref[11:]} - else: 'dev' - else: 'dev' - - channel_short: - # Special case where naming is limited: - # * for the frontend upload on AWS S3, where the production bucket is named 'prod' - # * on Heroku for the events runtime, where the production app is named 'prod' - $if: 'tasks_for == "github-push"' - then: - $if: 'event.ref == "refs/heads/production"' - then: 'prod' - else: ${event.ref[11:]} - else: 'dev' - - backend_url: - $if: 'tasks_for == "github-push"' - then: - $if: 'event.ref == "refs/heads/testing"' - then: 'https://api.coverage.testing.moz.tools' - else: 'https://api.coverage.moz.tools' - else: 'https://api.coverage.moz.tools' + else: "dev" + else: "dev" provisionerId: $if: 'taskcluster_root_url == "https://firefox-ci-tc.services.mozilla.com"' then: - $if: 'tasks_for == "github-push"' - then: 'code-analysis-3' - else: 'code-analysis-1' + $if: 'tasks_for == "github-push"' + then: "code-analysis-3" + else: "code-analysis-1" else: proj-relman workerType: $if: 'taskcluster_root_url == "https://firefox-ci-tc.services.mozilla.com"' - then: linux - else: ci + then: linux-gw-gcp + else: generic-worker-ubuntu-24-04 - taskboot_image: "mozilla/taskboot:0.2.2" + taskboot_image: "mozilla/taskboot:0.4.1" + python_image: "python:3.12" in: - $if: 'tasks_for == "github-push" || (tasks_for == "github-pull-request" && event["action"] in ["opened", "reopened", "synchronize"])' + $if: '(tasks_for == "github-push" && (head_branch == "master" || head_branch == "production" || head_branch == "testing")) || (tasks_for == "github-pull-request" && event["action"] in ["opened", "reopened", "synchronize"])' then: $flatten: $match: # Always run those tasks "true": - - taskId: {$eval: as_slugid("check_lint")} + - taskId: { $eval: as_slugid("check_lint") } provisionerId: "${provisionerId}" workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} + created: { $fromNow: "" } + deadline: { $fromNow: "1 hour" } payload: maxRunTime: 3600 - image: python:3.8 + image: "${python_image}" command: - sh - -lxce - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && cd /src/bot && pip install --disable-pip-version-check --no-cache-dir --quiet -r requirements-dev.txt && - cd /src/backend && pip install --disable-pip-version-check --no-cache-dir --quiet -r requirements-dev.txt && cd /src && pre-commit run -a --show-diff-on-failure" metadata: name: "Code Coverage checks: linting" @@ -99,20 +81,19 @@ tasks: # Run only on firefoxci Taskcluster 'taskcluster_root_url == "https://firefox-ci-tc.services.mozilla.com"': - - taskId: {$eval: as_slugid("bot_check_tests")} + - taskId: { $eval: as_slugid("bot_check_tests") } provisionerId: "${provisionerId}" workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} + created: { $fromNow: "" } + deadline: { $fromNow: "1 hour" } payload: maxRunTime: 3600 - image: python:3.8 + image: "${python_image}" command: - sh - -lxce - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && /src/bot/ci/bootstrap.sh && - cd /src/tools && python3 setup.py install && cd /src/bot && pip3 install --disable-pip-version-check --no-cache-dir --quiet . && pip3 install --disable-pip-version-check --no-cache-dir --quiet -r requirements-dev.txt && pytest -v" metadata: @@ -121,17 +102,16 @@ tasks: owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage - - taskId: {$eval: as_slugid("bot_build")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} + - taskId: { $eval: as_slugid("bot_build") } + created: { $fromNow: "" } + deadline: { $fromNow: "1 hour" } + expires: { $fromNow: "2 years" } provisionerId: "${provisionerId}" workerType: "${workerType}" dependencies: - - {$eval: as_slugid("check_lint")} - - {$eval: as_slugid("bot_check_tests")} + - { $eval: as_slugid("check_lint") } + - { $eval: as_slugid("bot_check_tests") } payload: - features: - dind: true maxRunTime: 3600 image: "${taskboot_image}" env: @@ -140,8 +120,6 @@ tasks: command: - taskboot - build - - --build-tool - - dind - --image - mozilla/code-coverage - --tag @@ -152,9 +130,9 @@ tasks: - /bot.tar - bot/Dockerfile artifacts: - public/code-coverage-bot.tar: - expires: {$fromNow: '6 months'} - path: /bot.tar + public/code-coverage-bot.tar.zst: + expires: { $fromNow: "2 years" } + path: /bot.tar.zst type: file routes: $if: 'tasks_for == "github-pull-request"' @@ -170,314 +148,20 @@ tasks: owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage - # Run only on community Taskcluster 'taskcluster_root_url == "https://community-tc.services.mozilla.com"': - - taskId: {$eval: as_slugid("backend_check_tests")} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - maxRunTime: 3600 - image: python:3.8 - command: - - sh - - -lxce - - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && - cd /src/tools && python setup.py install && - cd /src/backend && pip install --disable-pip-version-check --no-cache-dir --quiet . && pip install --disable-pip-version-check --no-cache-dir --quiet -r requirements-dev.txt && - pytest -v" - metadata: - name: "Code Coverage Backend checks: unit tests" - description: Check python code with pytest - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - - taskId: {$eval: as_slugid("events_check_tests")} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - maxRunTime: 3600 - image: python:3.8 - command: - - sh - - -lxce - - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && - cd /src/events && pip install --disable-pip-version-check --no-cache-dir --quiet -q -r requirements.txt && pip install --disable-pip-version-check --no-cache-dir --quiet . && pip install --disable-pip-version-check --no-cache-dir --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("report_check_tests")} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - features: - taskclusterProxy: true - maxRunTime: 3600 - image: python:3.8 - command: - - sh - - -lxce - - "git clone --quiet ${repository} /src && cd /src && git checkout ${head_rev} -b checks && - cd /src/report && ./ci-test.sh" - metadata: - name: "Code Coverage Report checks: unit tests" - description: Check python code with unittest - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - - taskId: {$eval: as_slugid("backend_build")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - dependencies: - - {$eval: as_slugid("check_lint")} - - {$eval: as_slugid("backend_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/backend - - --tag - - "${channel}" - - --tag - - "${head_rev}" - - --write - - /backend.tar - - backend/Dockerfile - artifacts: - public/code-coverage-backend.tar: - expires: {$fromNow: '2 weeks'} - path: /backend.tar - type: file - scopes: - - docker-worker:capability:privileged - metadata: - name: Code Coverage Backend docker build - description: Build docker image with taskboot - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - - taskId: {$eval: as_slugid("events_build")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - 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: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - maxRunTime: 3600 - image: node:11-alpine - command: - - sh - - -lxce - - "apk add --quiet --update git python && - git clone --quiet ${repository} /src && cd /src/addon && git checkout ${head_rev} -b build && - npm install --no-progress && - npm run build && - npm run test && - npm run export" - artifacts: - public/addon: - expires: {$fromNow: '2 weeks'} - path: /src/addon/web-ext-artifacts - type: directory - metadata: - name: Code Coverage Addon build - description: Build code-coverage webextension - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - - taskId: {$eval: as_slugid("frontend_build")} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - maxRunTime: 3600 - image: node - env: - BACKEND_URL: "${backend_url}" - command: - - sh - - -lxce - - "git clone --quiet ${repository} /src && cd /src/frontend && git checkout ${head_rev} -b build && - npm install --no-progress && npm run release" - artifacts: - public/frontend: - expires: {$fromNow: '2 weeks'} - path: /src/frontend/dist - type: directory - metadata: - name: Code Coverage Frontend build - description: Build web single page application - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - - $if: 'channel in ["testing", "production"]' - then: - taskId: {$eval: as_slugid("backend_deploy")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - dependencies: - - {$eval: as_slugid("backend_build")} - payload: - features: - taskclusterProxy: true - maxRunTime: 3600 - image: "${taskboot_image}" - command: - - taskboot - - deploy-heroku - - --heroku-app - - "code-coverage-${channel}" - - web:public/code-coverage-backend.tar - env: - TASKCLUSTER_SECRET: "project/relman/code-coverage/deploy-${channel}" - scopes: - - "secrets:get:project/relman/code-coverage/deploy-${channel}" - metadata: - name: "Code Coverage Backend 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("events_deploy")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - 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_short}" - - 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("frontend_deploy")} - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - dependencies: - - {$eval: as_slugid("frontend_build")} - payload: - features: - # Needed for access to secret - taskclusterProxy: true - maxRunTime: 3600 - image: "${taskboot_image}" - env: - TASKCLUSTER_SECRET: "project/relman/code-coverage/deploy-${channel}" - command: - - taskboot - - deploy-s3 - - --artifact-folder - - public/frontend - - --bucket - - "codecoverage-${channel_short}-site-static-website" - scopes: - - "secrets:get:project/relman/code-coverage/deploy-${channel}" - metadata: - name: "Code Coverage Frontend deploy (${channel})" - description: Deploy frontend build on environment - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage - - $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"' then: $let: - version: {$eval: 'head_branch[10:]'} + version: { $eval: "head_branch[10:]" } in: - taskId: {$eval: as_slugid("release")} + taskId: { $eval: as_slugid("release") } dependencies: - - {$eval: as_slugid("addon_build")} - - {$eval: as_slugid("backend_build")} - - {$eval: as_slugid("frontend_build")} - - {$eval: as_slugid("report_check_tests")} + - { $eval: as_slugid("check_lint") } provisionerId: "${provisionerId}" workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} + created: { $fromNow: "" } + deadline: { $fromNow: "1 hour" } payload: features: # Needed for access to secret @@ -498,33 +182,3 @@ tasks: description: Code Coverage Github automated release owner: bastien@mozilla.com source: https://github.com/mozilla/code-coverage - - - $if: 'tasks_for == "github-push" && head_branch[:10] == "refs/tags/"' - then: - taskId: {$eval: as_slugid("report_deploy_pypi")} - dependencies: - - {$eval: as_slugid("report_check_tests")} - provisionerId: "${provisionerId}" - workerType: "${workerType}" - created: {$fromNow: ''} - deadline: {$fromNow: '1 hour'} - payload: - features: - # Needed for access to secret - taskclusterProxy: true - maxRunTime: 3600 - image: "${taskboot_image}" - env: - TASKCLUSTER_SECRET: "project/relman/code-coverage/release" - command: - - sh - - -lxce - - "git clone ${repository} /project && cd /project && git checkout ${head_rev} -b release && - taskboot --target=/project/report deploy-pypi" - scopes: - - "secrets:get:project/relman/code-coverage/release" - metadata: - name: "Code Coverage Report: publish on pypi" - description: Code Coverage Github Pypi publication for report - owner: bastien@mozilla.com - source: https://github.com/mozilla/code-coverage diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 4f66cdaf5..6f21cc82b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -5,4 +5,5 @@ For more details, please read the [Mozilla Community Participation Guidelines](https://www.mozilla.org/about/governance/policies/participation/). ## How to Report + For more information on how to report violations of the Community Participation Guidelines, please read our '[How to Report](https://www.mozilla.org/about/governance/policies/participation/reporting/)' page. diff --git a/README.md b/README.md index 418f9cc2c..c44dcf992 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,6 @@ # Mozilla Code Coverage -This project has 4 parts: - -* `bot` is a Python script running as a Taskcluster hook, aggregating code coverage data from Mozilla repositories, -* `backend` is a Python API built with Flask, that serves the aggregated code coverage data, in an efficient way, -* `frontend` is a vanilla Javascript SPA displaying code coverage data in your browser, -* `addon` is a Web Extension for Firefox, extending several Mozilla websites with code coverage data. +`bot` is a Python script running as a Taskcluster hook, aggregating code coverage data from Mozilla repositories. ## Help diff --git a/addon/.eslintrc.js b/addon/.eslintrc.js deleted file mode 100644 index cb40f6e99..000000000 --- a/addon/.eslintrc.js +++ /dev/null @@ -1,35 +0,0 @@ -module.exports = { - "globals": { - }, - "env": { - "es6": true, - "node": true, - "webextensions": true - }, - "plugins": [ - "mozilla" - ], - "extends": [ - "plugin:mozilla/recommended", - "eslint:recommended" - ], - "parserOptions": { - "ecmaVersion": 8, - "ecmaFeatures": { - "jsx": true - }, - "sourceType": "module" - }, - "rules": { - "indent": [ - "error", - 2 - ], - "no-console": [ - "error", - { - "allow": ["error"] - } - ] - } -}; diff --git a/addon/.gitignore b/addon/.gitignore deleted file mode 100644 index ce8c1ef4e..000000000 --- a/addon/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -gecko-code-coverage.zip -node_modules/ -supported_extensions.js -build -web-ext-artifacts/ diff --git a/addon/.travis.yml b/addon/.travis.yml deleted file mode 100644 index 4c0cb6366..000000000 --- a/addon/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js -node_js: node -script: - - npm run lint - - npm run build - - npm run export - - npm test - - test -f web-ext-artifacts/gecko_code_coverage-*.zip diff --git a/addon/LICENSE b/addon/LICENSE deleted file mode 100644 index a612ad981..000000000 --- a/addon/LICENSE +++ /dev/null @@ -1,373 +0,0 @@ -Mozilla Public License Version 2.0 -================================== - -1. Definitions --------------- - -1.1. "Contributor" - means each individual or legal entity that creates, contributes to - the creation of, or owns Covered Software. - -1.2. "Contributor Version" - means the combination of the Contributions of others (if any) used - by a Contributor and that particular Contributor's Contribution. - -1.3. "Contribution" - means Covered Software of a particular Contributor. - -1.4. "Covered Software" - means Source Code Form to which the initial Contributor has attached - the notice in Exhibit A, the Executable Form of such Source Code - Form, and Modifications of such Source Code Form, in each case - including portions thereof. - -1.5. "Incompatible With Secondary Licenses" - means - - (a) that the initial Contributor has attached the notice described - in Exhibit B to the Covered Software; or - - (b) that the Covered Software was made available under the terms of - version 1.1 or earlier of the License, but not also under the - terms of a Secondary License. - -1.6. "Executable Form" - means any form of the work other than Source Code Form. - -1.7. "Larger Work" - means a work that combines Covered Software with other material, in - a separate file or files, that is not Covered Software. - -1.8. "License" - means this document. - -1.9. "Licensable" - means having the right to grant, to the maximum extent possible, - whether at the time of the initial grant or subsequently, any and - all of the rights conveyed by this License. - -1.10. "Modifications" - means any of the following: - - (a) any file in Source Code Form that results from an addition to, - deletion from, or modification of the contents of Covered - Software; or - - (b) any new file in Source Code Form that contains any Covered - Software. - -1.11. "Patent Claims" of a Contributor - means any patent claim(s), including without limitation, method, - process, and apparatus claims, in any patent Licensable by such - Contributor that would be infringed, but for the grant of the - License, by the making, using, selling, offering for sale, having - made, import, or transfer of either its Contributions or its - Contributor Version. - -1.12. "Secondary License" - means either the GNU General Public License, Version 2.0, the GNU - Lesser General Public License, Version 2.1, the GNU Affero General - Public License, Version 3.0, or any later versions of those - licenses. - -1.13. "Source Code Form" - means the form of the work preferred for making modifications. - -1.14. "You" (or "Your") - means an individual or a legal entity exercising rights under this - License. For legal entities, "You" includes any entity that - controls, is controlled by, or is under common control with You. For - purposes of this definition, "control" means (a) the power, direct - or indirect, to cause the direction or management of such entity, - whether by contract or otherwise, or (b) ownership of more than - fifty percent (50%) of the outstanding shares or beneficial - ownership of such entity. - -2. License Grants and Conditions --------------------------------- - -2.1. Grants - -Each Contributor hereby grants You a world-wide, royalty-free, -non-exclusive license: - -(a) under intellectual property rights (other than patent or trademark) - Licensable by such Contributor to use, reproduce, make available, - modify, display, perform, distribute, and otherwise exploit its - Contributions, either on an unmodified basis, with Modifications, or - as part of a Larger Work; and - -(b) under Patent Claims of such Contributor to make, use, sell, offer - for sale, have made, import, and otherwise transfer either its - Contributions or its Contributor Version. - -2.2. Effective Date - -The licenses granted in Section 2.1 with respect to any Contribution -become effective for each Contribution on the date the Contributor first -distributes such Contribution. - -2.3. Limitations on Grant Scope - -The licenses granted in this Section 2 are the only rights granted under -this License. No additional rights or licenses will be implied from the -distribution or licensing of Covered Software under this License. -Notwithstanding Section 2.1(b) above, no patent license is granted by a -Contributor: - -(a) for any code that a Contributor has removed from Covered Software; - or - -(b) for infringements caused by: (i) Your and any other third party's - modifications of Covered Software, or (ii) the combination of its - Contributions with other software (except as part of its Contributor - Version); or - -(c) under Patent Claims infringed by Covered Software in the absence of - its Contributions. - -This License does not grant any rights in the trademarks, service marks, -or logos of any Contributor (except as may be necessary to comply with -the notice requirements in Section 3.4). - -2.4. Subsequent Licenses - -No Contributor makes additional grants as a result of Your choice to -distribute the Covered Software under a subsequent version of this -License (see Section 10.2) or under the terms of a Secondary License (if -permitted under the terms of Section 3.3). - -2.5. Representation - -Each Contributor represents that the Contributor believes its -Contributions are its original creation(s) or it has sufficient rights -to grant the rights to its Contributions conveyed by this License. - -2.6. Fair Use - -This License is not intended to limit any rights You have under -applicable copyright doctrines of fair use, fair dealing, or other -equivalents. - -2.7. Conditions - -Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted -in Section 2.1. - -3. Responsibilities -------------------- - -3.1. Distribution of Source Form - -All distribution of Covered Software in Source Code Form, including any -Modifications that You create or to which You contribute, must be under -the terms of this License. You must inform recipients that the Source -Code Form of the Covered Software is governed by the terms of this -License, and how they can obtain a copy of this License. You may not -attempt to alter or restrict the recipients' rights in the Source Code -Form. - -3.2. Distribution of Executable Form - -If You distribute Covered Software in Executable Form then: - -(a) such Covered Software must also be made available in Source Code - Form, as described in Section 3.1, and You must inform recipients of - the Executable Form how they can obtain a copy of such Source Code - Form by reasonable means in a timely manner, at a charge no more - than the cost of distribution to the recipient; and - -(b) You may distribute such Executable Form under the terms of this - License, or sublicense it under different terms, provided that the - license for the Executable Form does not attempt to limit or alter - the recipients' rights in the Source Code Form under this License. - -3.3. Distribution of a Larger Work - -You may create and distribute a Larger Work under terms of Your choice, -provided that You also comply with the requirements of this License for -the Covered Software. If the Larger Work is a combination of Covered -Software with a work governed by one or more Secondary Licenses, and the -Covered Software is not Incompatible With Secondary Licenses, this -License permits You to additionally distribute such Covered Software -under the terms of such Secondary License(s), so that the recipient of -the Larger Work may, at their option, further distribute the Covered -Software under the terms of either this License or such Secondary -License(s). - -3.4. Notices - -You may not remove or alter the substance of any license notices -(including copyright notices, patent notices, disclaimers of warranty, -or limitations of liability) contained within the Source Code Form of -the Covered Software, except that You may alter any license notices to -the extent required to remedy known factual inaccuracies. - -3.5. Application of Additional Terms - -You may choose to offer, and to charge a fee for, warranty, support, -indemnity or liability obligations to one or more recipients of Covered -Software. However, You may do so only on Your own behalf, and not on -behalf of any Contributor. You must make it absolutely clear that any -such warranty, support, indemnity, or liability obligation is offered by -You alone, and You hereby agree to indemnify every Contributor for any -liability incurred by such Contributor as a result of warranty, support, -indemnity or liability terms You offer. You may include additional -disclaimers of warranty and limitations of liability specific to any -jurisdiction. - -4. Inability to Comply Due to Statute or Regulation ---------------------------------------------------- - -If it is impossible for You to comply with any of the terms of this -License with respect to some or all of the Covered Software due to -statute, judicial order, or regulation then You must: (a) comply with -the terms of this License to the maximum extent possible; and (b) -describe the limitations and the code they affect. Such description must -be placed in a text file included with all distributions of the Covered -Software under this License. Except to the extent prohibited by statute -or regulation, such description must be sufficiently detailed for a -recipient of ordinary skill to be able to understand it. - -5. Termination --------------- - -5.1. The rights granted under this License will terminate automatically -if You fail to comply with any of its terms. However, if You become -compliant, then the rights granted under this License from a particular -Contributor are reinstated (a) provisionally, unless and until such -Contributor explicitly and finally terminates Your grants, and (b) on an -ongoing basis, if such Contributor fails to notify You of the -non-compliance by some reasonable means prior to 60 days after You have -come back into compliance. Moreover, Your grants from a particular -Contributor are reinstated on an ongoing basis if such Contributor -notifies You of the non-compliance by some reasonable means, this is the -first time You have received notice of non-compliance with this License -from such Contributor, and You become compliant prior to 30 days after -Your receipt of the notice. - -5.2. If You initiate litigation against any entity by asserting a patent -infringement claim (excluding declaratory judgment actions, -counter-claims, and cross-claims) alleging that a Contributor Version -directly or indirectly infringes any patent, then the rights granted to -You by any and all Contributors for the Covered Software under Section -2.1 of this License shall terminate. - -5.3. In the event of termination under Sections 5.1 or 5.2 above, all -end user license agreements (excluding distributors and resellers) which -have been validly granted by You or Your distributors under this License -prior to termination shall survive termination. - -************************************************************************ -* * -* 6. Disclaimer of Warranty * -* ------------------------- * -* * -* Covered Software is provided under this License on an "as is" * -* basis, without warranty of any kind, either expressed, implied, or * -* statutory, including, without limitation, warranties that the * -* Covered Software is free of defects, merchantable, fit for a * -* particular purpose or non-infringing. The entire risk as to the * -* quality and performance of the Covered Software is with You. * -* Should any Covered Software prove defective in any respect, You * -* (not any Contributor) assume the cost of any necessary servicing, * -* repair, or correction. This disclaimer of warranty constitutes an * -* essential part of this License. No use of any Covered Software is * -* authorized under this License except under this disclaimer. * -* * -************************************************************************ - -************************************************************************ -* * -* 7. Limitation of Liability * -* -------------------------- * -* * -* Under no circumstances and under no legal theory, whether tort * -* (including negligence), contract, or otherwise, shall any * -* Contributor, or anyone who distributes Covered Software as * -* permitted above, be liable to You for any direct, indirect, * -* special, incidental, or consequential damages of any character * -* including, without limitation, damages for lost profits, loss of * -* goodwill, work stoppage, computer failure or malfunction, or any * -* and all other commercial damages or losses, even if such party * -* shall have been informed of the possibility of such damages. This * -* limitation of liability shall not apply to liability for death or * -* personal injury resulting from such party's negligence to the * -* extent applicable law prohibits such limitation. Some * -* jurisdictions do not allow the exclusion or limitation of * -* incidental or consequential damages, so this exclusion and * -* limitation may not apply to You. * -* * -************************************************************************ - -8. Litigation -------------- - -Any litigation relating to this License may be brought only in the -courts of a jurisdiction where the defendant maintains its principal -place of business and such litigation shall be governed by laws of that -jurisdiction, without reference to its conflict-of-law provisions. -Nothing in this Section shall prevent a party's ability to bring -cross-claims or counter-claims. - -9. Miscellaneous ----------------- - -This License represents the complete agreement concerning the subject -matter hereof. If any provision of this License is held to be -unenforceable, such provision shall be reformed only to the extent -necessary to make it enforceable. Any law or regulation which provides -that the language of a contract shall be construed against the drafter -shall not be used to construe this License against a Contributor. - -10. Versions of the License ---------------------------- - -10.1. New Versions - -Mozilla Foundation is the license steward. Except as provided in Section -10.3, no one other than the license steward has the right to modify or -publish new versions of this License. Each version will be given a -distinguishing version number. - -10.2. Effect of New Versions - -You may distribute the Covered Software under the terms of the version -of the License under which You originally received the Covered Software, -or under the terms of any subsequent version published by the license -steward. - -10.3. Modified Versions - -If you create software not governed by this License, and you want to -create a new license for such software, you may create and use a -modified version of this License if you rename the license and remove -any references to the name of the license steward (except to note that -such modified license differs from this License). - -10.4. Distributing Source Code Form that is Incompatible With Secondary -Licenses - -If You choose to distribute Source Code Form that is Incompatible With -Secondary Licenses under the terms of this version of the License, the -notice described in Exhibit B of this License must be attached. - -Exhibit A - Source Code Form License Notice -------------------------------------------- - - 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/. - -If it is not possible or desirable to put the notice in a particular -file, then You may include the notice in a location (such as a LICENSE -file in a relevant directory) where a recipient would be likely to look -for such a notice. - -You may add additional accurate notices of copyright ownership. - -Exhibit B - "Incompatible With Secondary Licenses" Notice ---------------------------------------------------------- - - This Source Code Form is "Incompatible With Secondary Licenses", as - defined by the Mozilla Public License, v. 2.0. diff --git a/addon/README.md b/addon/README.md deleted file mode 100644 index eac6d56e8..000000000 --- a/addon/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# code-coverage-addon - -[![Build Status](https://travis-ci.org/mozilla/code-coverage-addon.svg?branch=master)](https://travis-ci.org/mozilla/code-coverage-addon) - -Extension that augments several Mozilla websites (DXR, Searchfox) with code coverage information. diff --git a/addon/assets/codecov.png b/addon/assets/codecov.png deleted file mode 100644 index 18d46dfc1..000000000 Binary files a/addon/assets/codecov.png and /dev/null differ diff --git a/addon/assets/coverage.jpg b/addon/assets/coverage.jpg deleted file mode 100644 index e04918ce7..000000000 Binary files a/addon/assets/coverage.jpg and /dev/null differ diff --git a/addon/assets/extensions.json b/addon/assets/extensions.json deleted file mode 100644 index 67fcaf91d..000000000 --- a/addon/assets/extensions.json +++ /dev/null @@ -1,16 +0,0 @@ -[ - "c", - "h", - "cpp", - "cc", - "cxx", - "hh", - "hpp", - "hxx", - "js", - "jsm", - "xul", - "xml", - "html", - "xhtml" -] diff --git a/addon/manifest.json b/addon/manifest.json deleted file mode 100644 index ace47eb0f..000000000 --- a/addon/manifest.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "author": "Marco Castelluccio", - "manifest_version": 2, - "name": "Gecko Code Coverage", - "version": "0.11.0", - "icons": { - "270": "assets/coverage.jpg" - }, - "description": "Extension that augments several Mozilla websites (DXR, Searchfox) with code coverage information.", - "content_scripts": [ - { - "matches": ["*://dxr.mozilla.org/mozilla-central/source/*"], - "js": ["build/dxr.js"], - "css": ["src/spinner.css", "src/dxr.css"], - "run_at": "document_end" - }, - { - "matches": ["*://searchfox.org/mozilla-central/source/*"], - "js": ["build/searchfox.js"], - "css": ["src/spinner.css", "src/dxr.css"], - "run_at": "document_end" - }, - { - "matches": ["*://crash-stats.mozilla.com/report/index/*"], - "js": ["build/socorro.js"], - "css": ["src/spinner.css", "src/socorro.css"], - "run_at": "document_end" - }, - { - "matches": ["*://hg.mozilla.org/mozilla-central/file/*", - "*://hg.mozilla.org/mozilla-central/annotate/*"], - "js": ["build/hgmo.js"], - "css": ["src/spinner.css", "src/dxr.css"], - "run_at": "document_end" - } - ], - "permissions": [ - "https://api.coverage.moz.tools/v2/*", - "https://mapper.mozilla-releng.net/gecko-dev/rev/git/*", - "https://hg.mozilla.org/mozilla-central/json-rev/*" - ], - "homepage_url": "https://github.com/mozilla/code-coverage-addon" -} diff --git a/addon/package-lock.json b/addon/package-lock.json deleted file mode 100644 index 9679a7cc8..000000000 --- a/addon/package-lock.json +++ /dev/null @@ -1,9061 +0,0 @@ -{ - "name": "gecko-code-coverage", - "version": "0.11.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@babel/code-frame": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", - "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", - "dev": true, - "requires": { - "@babel/highlight": "^7.10.4" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", - "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", - "dev": true - }, - "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.10.4", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/polyfill": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.7.0.tgz", - "integrity": "sha512-/TS23MVvo34dFmf8mwCisCbWGrfhbiWZSwBo6HkADTBhUa2Q/jWltyY/tpofz/b6/RIhqaqQcquptCirqIhOaQ==", - "dev": true, - "requires": { - "core-js": "^2.6.5", - "regenerator-runtime": "^0.13.2" - } - }, - "@babel/runtime": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz", - "integrity": "sha512-uCnC2JEVAu8AKB5do1WRIsvrdJ0flYx/A/9f/6chdacnEZ7LmavjdsDXr5ksYBegxtuTPR5Va9/+13QF/kFkCA==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.2" - } - }, - "@babel/runtime-corejs3": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.10.4.tgz", - "integrity": "sha512-BFlgP2SoLO9HJX9WBwN67gHWMBhDX/eDz64Jajd6mR/UAUzqrNMm99d4qHnVaKscAElZoFiPv+JpR/Siud5lXw==", - "dev": true, - "requires": { - "core-js-pure": "^3.0.0", - "regenerator-runtime": "^0.13.4" - } - }, - "@cliqz-oss/firefox-client": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@cliqz-oss/firefox-client/-/firefox-client-0.3.1.tgz", - "integrity": "sha512-RO+Tops/wGnBzWoZYkCraqyh2JqOejqJq5/a4b54HhmjTNSKdUPwAOK17EGg/zPb0nWqkuB7QyZsI9bo+ev8Kw==", - "dev": true, - "requires": { - "colors": "0.5.x", - "js-select": "~0.6.0" - } - }, - "@cliqz-oss/node-firefox-connect": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@cliqz-oss/node-firefox-connect/-/node-firefox-connect-1.2.1.tgz", - "integrity": "sha512-O/IyiB5pfztCdmxQZg0/xeq5w+YiP3gtJz8d4We2EpLPKzbDVjOrtfLKYgVfm6Ya6mbvDge1uLkSRwaoVCWKnA==", - "dev": true, - "requires": { - "@cliqz-oss/firefox-client": "0.3.1", - "es6-promise": "^2.0.1" - } - }, - "@sindresorhus/is": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz", - "integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==", - "dev": true - }, - "@szmarczak/http-timer": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz", - "integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==", - "dev": true, - "requires": { - "defer-to-connect": "^1.0.1" - } - }, - "@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", - "dev": true - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", - "dev": true - }, - "@types/node": { - "version": "14.0.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.0.14.tgz", - "integrity": "sha512-syUgf67ZQpaJj01/tRTknkMNoBBLWJOBODF0Zm4NrXmiSuxjymFrxnTu1QVYRubhVkRcZLYZG8STTwJRdVm/WQ==", - "dev": true - }, - "@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "dev": true, - "requires": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", - "dev": true - }, - "@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", - "dev": true - }, - "@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", - "dev": true - }, - "@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dev": true, - "requires": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", - "dev": true - }, - "@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", - "dev": true - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "dev": true, - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "dev": true, - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", - "dev": true - }, - "@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "JSONSelect": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz", - "integrity": "sha1-QVQYpSbTP+MddLTe+jyDbUhewgM=", - "dev": true - }, - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true - }, - "acorn-jsx": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", - "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", - "dev": true - }, - "adbkit": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/adbkit/-/adbkit-2.11.1.tgz", - "integrity": "sha512-hDTiRg9NX3HQt7WoDAPCplUpvzr4ZzQa2lq7BdTTJ/iOZ6O7YNAs6UYD8sFAiBEcYHDRIyq3cm9sZP6uZnhvXw==", - "dev": true, - "requires": { - "adbkit-logcat": "^1.1.0", - "adbkit-monkey": "~1.0.1", - "bluebird": "~2.9.24", - "commander": "^2.3.0", - "debug": "~2.6.3", - "node-forge": "^0.7.1", - "split": "~0.3.3" - } - }, - "adbkit-logcat": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz", - "integrity": "sha1-Adf5sM75CTowvLOwB+//MBUIli8=", - "dev": true - }, - "adbkit-monkey": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz", - "integrity": "sha1-8pG+cBou/FZ6Y/x6pq/N7TFDC+E=", - "dev": true, - "requires": { - "async": "~0.2.9" - } - }, - "addons-linter": { - "version": "1.26.0", - "resolved": "https://registry.npmjs.org/addons-linter/-/addons-linter-1.26.0.tgz", - "integrity": "sha512-PKytX6qxbZapc076auO0LBhAGuw2z7eyPnYusMgNBPbY72MAXzUCt3AhSbwGhZ43d5Tn/3At5H0xPi31VXG2Mg==", - "dev": true, - "requires": { - "@babel/runtime": "7.10.2", - "ajv": "6.12.2", - "ajv-merge-patch": "4.1.0", - "chalk": "4.1.0", - "cheerio": "1.0.0-rc.3", - "columnify": "1.5.4", - "common-tags": "1.8.0", - "deepmerge": "4.2.2", - "dispensary": "0.51.2", - "es6-promisify": "6.1.1", - "eslint": "5.16.0", - "eslint-plugin-no-unsanitized": "3.1.2", - "eslint-visitor-keys": "1.2.0", - "espree": "6.2.1", - "esprima": "4.0.1", - "first-chunk-stream": "3.0.0", - "fluent-syntax": "0.13.0", - "fsevents": "2.1.3", - "glob": "7.1.6", - "is-mergeable-object": "1.1.1", - "jed": "1.1.1", - "mdn-browser-compat-data": "1.0.25", - "os-locale": "5.0.0", - "pino": "6.3.2", - "postcss": "7.0.32", - "probe-image-size": "5.0.0", - "relaxed-json": "1.0.3", - "semver": "7.3.2", - "source-map-support": "0.5.19", - "strip-bom-stream": "4.0.0", - "tosource": "1.0.0", - "upath": "1.2.0", - "whatwg-url": "8.1.0", - "yargs": "15.3.1", - "yauzl": "2.10.0" - }, - "dependencies": { - "@babel/runtime": { - "version": "7.10.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.10.2.tgz", - "integrity": "sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg==", - "dev": true, - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "ajv": { - "version": "6.12.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", - "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", - "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "semver": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", - "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", - "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.1" - } - }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "adm-zip": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", - "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", - "dev": true - }, - "ajv": { - "version": "6.5.5", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.5.tgz", - "integrity": "sha512-7q7gtRQDJSyuEHjuVgHoUa2VuemFiCMrfQc9Tc08XTAc4Zj/5U1buQJ0HU6i7fKjXU09SVgSmxa4sLvuvS8Iyg==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "dev": true - }, - "ajv-keywords": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", - "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", - "dev": true - }, - "ajv-merge-patch": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ajv-merge-patch/-/ajv-merge-patch-4.1.0.tgz", - "integrity": "sha512-0mAYXMSauA8RZ7r+B4+EAOYcZEcO9OK5EiQCR7W7Cv4E44pJj56ZnkKLJ9/PAcOc0dT+LlV9fdDcq2TxVJfOYw==", - "dev": true, - "requires": { - "fast-json-patch": "^2.0.6", - "json-merge-patch": "^0.2.3" - } - }, - "ansi-align": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz", - "integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==", - "dev": true, - "requires": { - "string-width": "^3.0.0" - } - }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=", - "dev": true - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "archiver": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz", - "integrity": "sha1-/2YrSnggFJSj7lRNOjP+dJZQnrw=", - "dev": true, - "requires": { - "archiver-utils": "^1.3.0", - "async": "^2.0.0", - "buffer-crc32": "^0.2.1", - "glob": "^7.0.0", - "lodash": "^4.8.0", - "readable-stream": "^2.0.0", - "tar-stream": "^1.5.0", - "zip-stream": "^1.2.0" - }, - "dependencies": { - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "archiver-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz", - "integrity": "sha1-5QtMCccL89aA4y/xt5lOn52JUXQ=", - "dev": true, - "requires": { - "glob": "^7.0.0", - "graceful-fs": "^4.1.0", - "lazystream": "^1.0.0", - "lodash": "^4.8.0", - "normalize-path": "^2.0.0", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-differ": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", - "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", - "dev": true - }, - "array-filter": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", - "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=", - "dev": true - }, - "array-map": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", - "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=", - "dev": true - }, - "array-reduce": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", - "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=", - "dev": true - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", - "dev": true - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", - "dev": true - }, - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=", - "dev": true - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "atomic-sleep": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", - "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", - "dev": true - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true - }, - "aws4": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", - "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==", - "dev": true - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "base64-js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", - "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dev": true, - "optional": true, - "requires": { - "file-uri-to-path": "1.0.0" - } - }, - "bl": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz", - "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", - "dev": true, - "requires": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "bluebird": { - "version": "2.9.34", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz", - "integrity": "sha1-L3tOyAIWMoqf3evfacjUlC/v99g=", - "dev": true - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", - "dev": true - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", - "dev": true - }, - "boxen": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-4.2.0.tgz", - "integrity": "sha512-eB4uT9RGzg2odpER62bBwSLvUeGC+WbRjjyyFhGsKnc8wp/m0+hQsMUvUe3H2V0D5vw0nBdO1hCJoZo5mKeuIQ==", - "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^5.3.1", - "chalk": "^3.0.0", - "cli-boxes": "^2.2.0", - "string-width": "^4.1.0", - "term-size": "^2.1.0", - "type-fest": "^0.8.1", - "widest-line": "^3.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "dev": true, - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=", - "dev": true - }, - "buffer-equal-constant-time": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", - "integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=", - "dev": true - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", - "dev": true - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "bunyan": { - "version": "1.8.12", - "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz", - "integrity": "sha1-8VDw9nSKvdcq6uhPBEA74u8RN5c=", - "dev": true, - "requires": { - "dtrace-provider": "~0.8", - "moment": "^2.10.6", - "mv": "~2", - "safe-json-stringify": "~1" - } - }, - "cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dev": true, - "requires": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" - }, - "dependencies": { - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", - "dev": true - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - } - } - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - } - }, - "cacheable-request": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-6.1.0.tgz", - "integrity": "sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==", - "dev": true, - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^3.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^4.1.0", - "responselike": "^1.0.2" - }, - "dependencies": { - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "dev": true - } - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "dev": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true - }, - "cheerio": { - "version": "1.0.0-rc.3", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz", - "integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==", - "dev": true, - "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.1", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - }, - "dependencies": { - "fsevents": { - "version": "1.2.12", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", - "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", - "dev": true, - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1", - "node-pre-gyp": "*" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.4", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "debug": { - "version": "3.2.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.7", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.6.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "bundled": true, - "dev": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "bundled": true, - "dev": true, - "optional": true - }, - "minipass": { - "version": "2.9.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.3.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.9.0" - } - }, - "mkdirp": { - "version": "0.5.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "ms": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "needle": { - "version": "2.3.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "^3.2.6", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.14.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4.4.2" - } - }, - "nopt": { - "version": "4.0.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npm-normalize-package-bin": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1", - "npm-normalize-package-bin": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.7.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "dev": true, - "optional": true - }, - "semver": { - "version": "5.7.1", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "4.4.13", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.8.6", - "minizlib": "^1.2.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.3" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "yallist": { - "version": "3.1.1", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "chrome-launcher": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.13.3.tgz", - "integrity": "sha512-ovrDuFXgXS96lzeDqFPQRsczkxla+6QMvzsF+1u0mKlD1KE8EuhjdLwiDfIFedb0FSLz18RK3y6IbKu8oqA0qw==", - "dev": true, - "requires": { - "@types/node": "*", - "escape-string-regexp": "^1.0.5", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0", - "mkdirp": "^0.5.3", - "rimraf": "^3.0.2" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - } - } - }, - "chrome-trace-event": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", - "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "cli-boxes": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.0.tgz", - "integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==", - "dev": true - }, - "cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", - "dev": true, - "requires": { - "restore-cursor": "^2.0.0" - } - }, - "cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", - "dev": true - }, - "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", - "dev": true, - "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", - "dev": true - }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "colors": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz", - "integrity": "sha1-fQAj6usVTo7p/Oddy5I9DtFmd3Q=", - "dev": true - }, - "columnify": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz", - "integrity": "sha1-Rzfd8ce2mop8NAVweC6UfuyOeLs=", - "dev": true, - "requires": { - "strip-ansi": "^3.0.0", - "wcwidth": "^1.0.0" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", - "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", - "dev": true - }, - "common-tags": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", - "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", - "dev": true - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "compress-commons": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz", - "integrity": "sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8=", - "dev": true, - "requires": { - "buffer-crc32": "^0.2.1", - "crc32-stream": "^2.0.0", - "normalize-path": "^2.0.0", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "configstore": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", - "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", - "dev": true, - "requires": { - "dot-prop": "^5.2.0", - "graceful-fs": "^4.1.2", - "make-dir": "^3.0.0", - "unique-string": "^2.0.0", - "write-file-atomic": "^3.0.0", - "xdg-basedir": "^4.0.0" - } - }, - "console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, - "copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "core-js": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz", - "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==", - "dev": true - }, - "core-js-pure": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.5.tgz", - "integrity": "sha512-lacdXOimsiD0QyNf9BC/mxivNJ/ybBGJXQFKzRekp1WTHoVUWsUHEn+2T8GJAzzIhyOuXA+gOxCVN3l+5PLPUA==", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "crc": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", - "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", - "dev": true, - "requires": { - "buffer": "^5.1.0" - } - }, - "crc32-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz", - "integrity": "sha1-483TtN8xaN10494/u8t7KX/pCPQ=", - "dev": true, - "requires": { - "crc": "^3.4.4", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true - }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "dev": true, - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-what": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", - "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==", - "dev": true - }, - "cyclist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", - "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", - "dev": true - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "debounce": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.0.tgz", - "integrity": "sha512-mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg==", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-3.2.0.tgz", - "integrity": "sha512-4TgkVUsmmu7oCSyGBm5FvfMoACuoh9EOidm7V5/J2X2djAwwt57qb3F2KMP2ITqODTCSwb+YRV+0Zqrv18k/hw==", - "dev": true, - "requires": { - "xregexp": "^4.2.4" - } - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", - "dev": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "deep-equal": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", - "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", - "dev": true, - "requires": { - "is-arguments": "^1.0.4", - "is-date-object": "^1.0.1", - "is-regex": "^1.0.4", - "object-is": "^1.0.1", - "object-keys": "^1.1.1", - "regexp.prototype.flags": "^1.2.0" - } - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", - "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", - "dev": true - }, - "deepcopy": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/deepcopy/-/deepcopy-2.0.0.tgz", - "integrity": "sha512-d5ZK7pJw7F3k6M5vqDjGiiUS9xliIyWkdzBjnPhnSeRGjkYOGZMCFkdKVwV/WiHOe0NwzB8q+iDo7afvSf0arA==", - "dev": true, - "requires": { - "type-detect": "^4.0.8" - } - }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - "dev": true - }, - "defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", - "dev": true, - "requires": { - "clone": "^1.0.2" - } - }, - "defer-to-connect": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-1.1.3.tgz", - "integrity": "sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==", - "dev": true - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "dev": true, - "requires": { - "object-keys": "^1.0.12" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true - }, - "des.js": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", - "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "dispensary": { - "version": "0.51.2", - "resolved": "https://registry.npmjs.org/dispensary/-/dispensary-0.51.2.tgz", - "integrity": "sha512-liUDx/g1xFEBFoOL6308Vr0aYAZlGAyXGcOvuXVa/6qVBZT4QZrv4pVNeb5QOeD5C/Flta+A+qTnLkLnhgs40g==", - "dev": true, - "requires": { - "async": "~3.2.0", - "natural-compare-lite": "~1.4.0", - "pino": "~6.0.0", - "request": "~2.88.0", - "sha.js": "~2.4.4", - "source-map-support": "~0.5.4", - "yargs": "~15.3.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "async": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.0.tgz", - "integrity": "sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw==", - "dev": true - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "pino": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pino/-/pino-6.0.0.tgz", - "integrity": "sha512-3RfX2L76o7v230FP1fZ3Fo/WX7Su+P1Ld+pvBm2j+MyUjtA/KqDYxMkzBqzcX3R00zbC7Gf/HqIzyuu3tgvi9Q==", - "dev": true, - "requires": { - "fast-redact": "^2.0.0", - "fast-safe-stringify": "^2.0.7", - "flatstr": "^1.0.12", - "pino-std-serializers": "^2.4.2", - "quick-format-unescaped": "^4.0.1", - "sonic-boom": "^1.0.0" - } - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", - "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.1" - } - }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "requires": { - "esutils": "^2.0.2" - } - }, - "dom-serializer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", - "integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==", - "dev": true, - "requires": { - "domelementtype": "^1.3.0", - "entities": "^1.1.1" - } - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", - "dev": true - }, - "domhandler": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", - "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", - "dev": true, - "requires": { - "domelementtype": "1" - } - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "dev": true, - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "dot-prop": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.2.0.tgz", - "integrity": "sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A==", - "dev": true, - "requires": { - "is-obj": "^2.0.0" - } - }, - "dtrace-provider": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", - "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", - "dev": true, - "optional": true, - "requires": { - "nan": "^2.14.0" - } - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", - "dev": true - }, - "duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dev": true, - "requires": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ecdsa-sig-formatter": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", - "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "elliptic": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.2.tgz", - "integrity": "sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw==", - "dev": true, - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", - "dev": true - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "end-of-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", - "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", - "dev": true, - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", - "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "tapable": "^1.0.0" - } - }, - "entities": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", - "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", - "dev": true - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "dev": true, - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es-abstract": { - "version": "1.17.6", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz", - "integrity": "sha512-Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==", - "dev": true, - "requires": { - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.1", - "is-callable": "^1.2.0", - "is-regex": "^1.1.0", - "object-inspect": "^1.7.0", - "object-keys": "^1.1.1", - "object.assign": "^4.1.0", - "string.prototype.trimend": "^1.0.1", - "string.prototype.trimstart": "^1.0.1" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dev": true, - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es6-error": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", - "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", - "dev": true - }, - "es6-promise": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz", - "integrity": "sha1-lu258v2wGZWCKyY92KratnSBgbw=", - "dev": true - }, - "es6-promisify": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.1.1.tgz", - "integrity": "sha512-HBL8I3mIki5C1Cc9QjKUenHtnG0A5/xA8Q/AllRcfiwl2CZFXGK7ddBiCoRwAix4i2KxcQfjtIVcrVbB3vbmwg==", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "eslint": { - "version": "5.16.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz", - "integrity": "sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "ajv": "^6.9.1", - "chalk": "^2.1.0", - "cross-spawn": "^6.0.5", - "debug": "^4.0.1", - "doctrine": "^3.0.0", - "eslint-scope": "^4.0.3", - "eslint-utils": "^1.3.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^5.0.1", - "esquery": "^1.0.1", - "esutils": "^2.0.2", - "file-entry-cache": "^5.0.1", - "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.7.0", - "ignore": "^4.0.6", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "inquirer": "^6.2.2", - "js-yaml": "^3.13.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.11", - "minimatch": "^3.0.4", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", - "progress": "^2.0.0", - "regexpp": "^2.0.1", - "semver": "^5.5.1", - "strip-ansi": "^4.0.0", - "strip-json-comments": "^2.0.1", - "table": "^5.2.3", - "text-table": "^0.2.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", - "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "espree": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-5.0.1.tgz", - "integrity": "sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A==", - "dev": true, - "requires": { - "acorn": "^6.0.7", - "acorn-jsx": "^5.0.0", - "eslint-visitor-keys": "^1.0.0" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - } - } - }, - "eslint-plugin-mozilla": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-mozilla/-/eslint-plugin-mozilla-0.9.1.tgz", - "integrity": "sha512-prd8qpEKumF7xgg/qCmpUCEQr8EfX5aeVsvWRf1XfCpq7blMtnvovyneIkEFxcTQjupWKyPiNufLVnfyZA/L8g==", - "dev": true, - "requires": { - "ini-parser": "0.0.2", - "sax": "1.2.4" - } - }, - "eslint-plugin-no-unsanitized": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-no-unsanitized/-/eslint-plugin-no-unsanitized-3.1.2.tgz", - "integrity": "sha512-KPShfliA3Uy9qqwQx35P1fwIOeJjZkb0FbMMUFztRYRposzaynsM8JCEb952fqkidROl1kpqY80uSvn+TcWkQQ==", - "dev": true - }, - "eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dev": true, - "requires": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", - "dev": true, - "requires": { - "eslint-visitor-keys": "^1.1.0" - } - }, - "eslint-visitor-keys": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.2.0.tgz", - "integrity": "sha512-WFb4ihckKil6hu3Dp798xdzSfddwKKU3+nGniKF6HfeW6OLd2OUDEPP7TcHtB5+QXOKg2s6B2DaMPE1Nn/kxKQ==", - "dev": true - }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - }, - "dependencies": { - "acorn": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.3.1.tgz", - "integrity": "sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA==", - "dev": true - } - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true - }, - "esquery": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", - "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", - "dev": true, - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.1.0.tgz", - "integrity": "sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw==", - "dev": true - } - } - }, - "esrecurse": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", - "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", - "dev": true, - "requires": { - "estraverse": "^4.1.0" - } - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "event-to-promise": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/event-to-promise/-/event-to-promise-0.8.0.tgz", - "integrity": "sha1-S4TxF3K28l93Uvx02XFTGsb1tiY=", - "dev": true - }, - "events": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz", - "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==", - "dev": true - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.0.2.tgz", - "integrity": "sha512-QI2zLa6CjGWdiQsmSkZoGtDx2N+cQIGb3yNolGTdjSQzydzLgYYf8LRuagp7S7fPimjcrzUDSUFd/MgzELMi4Q==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - }, - "onetime": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.0.tgz", - "integrity": "sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q==", - "dev": true, - "requires": { - "mimic-fn": "^2.1.0" - } - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - }, - "shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "requires": { - "shebang-regex": "^3.0.0" - } - }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true - }, - "which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", - "dev": true, - "requires": { - "homedir-polyfill": "^1.0.1" - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "dependencies": { - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.2" - } - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "fast-json-patch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-2.2.1.tgz", - "integrity": "sha512-4j5uBaTnsYAV5ebkidvxiLUYOwjQ+JSFljeqfTxCrH9bDmlCQaOJFS84oDJ2rAXZq2yskmk3ORfoP9DCwqFNig==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1" - } - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "dev": true - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", - "dev": true - }, - "fast-redact": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-2.0.0.tgz", - "integrity": "sha512-zxpkULI9W9MNTK2sJ3BpPQrTEXFNESd2X6O1tXMFpK/XM0G5c5Rll2EVYZH2TqI3xRGK/VaJ+eEOt7pnENJpeA==", - "dev": true - }, - "fast-safe-stringify": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz", - "integrity": "sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==", - "dev": true - }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", - "dev": true, - "requires": { - "pend": "~1.2.0" - } - }, - "figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "dev": true - }, - "figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" - } - }, - "file-entry-cache": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", - "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", - "dev": true, - "requires": { - "flat-cache": "^2.0.1" - } - }, - "file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "dev": true, - "optional": true - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, - "dependencies": { - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - } - } - }, - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "findup-sync": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", - "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", - "dev": true, - "requires": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^3.0.4", - "resolve-dir": "^1.0.1" - } - }, - "firefox-profile": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/firefox-profile/-/firefox-profile-1.3.1.tgz", - "integrity": "sha512-8q7DnwVIXvuJuBm1shr5ivRh0Ih2ytWwOIMwHInDSlVyrjQVXy7Ik0frItDdWb/P5CIpQFcMk9fPsUwNqi2lyQ==", - "dev": true, - "requires": { - "adm-zip": "~0.4.x", - "archiver": "~2.1.0", - "async": "~2.5.0", - "fs-extra": "~4.0.2", - "ini": "~1.3.3", - "jetpack-id": "1.0.0", - "lazystream": "~1.0.0", - "lodash": "~4.17.2", - "minimist": "^1.1.1", - "uuid": "^3.0.0", - "xml2js": "~0.4.4" - }, - "dependencies": { - "async": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", - "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", - "dev": true, - "requires": { - "lodash": "^4.14.0" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - } - } - }, - "first-chunk-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-3.0.0.tgz", - "integrity": "sha512-LNRvR4hr/S8cXXkIY5pTgVP7L3tq6LlYWcg9nWBuW7o1NMxKZo6oOVa/6GIekMGI0Iw7uC+HWimMe9u/VAeKqw==", - "dev": true - }, - "flat-cache": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", - "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", - "dev": true, - "requires": { - "flatted": "^2.0.0", - "rimraf": "2.6.3", - "write": "1.0.3" - } - }, - "flatstr": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", - "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==", - "dev": true - }, - "flatted": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", - "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", - "dev": true - }, - "fluent-syntax": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.13.0.tgz", - "integrity": "sha512-0Bk1AsliuYB550zr4JV9AYhsETsD3ELXUQzdXGJfIc1Ni/ukAfBdQInDhVMYJUaT2QxoamNslwkYF7MlOrPUwg==", - "dev": true - }, - "flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true - }, - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", - "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", - "dev": true, - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", - "dev": true - }, - "fx-runner": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.12.tgz", - "integrity": "sha512-SLATlfKI2lyIcQsU8Sgfcwrni6PpC1VMTgp3aRomK/6azrzSQ3r63HqoTRliE/6JP8WjqVkIdCOGWk1ZqhfceA==", - "dev": true, - "requires": { - "commander": "2.9.0", - "shell-quote": "1.6.1", - "spawn-sync": "1.0.15", - "when": "3.7.7", - "which": "1.2.4", - "winreg": "0.0.12" - }, - "dependencies": { - "commander": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", - "integrity": "sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=", - "dev": true, - "requires": { - "graceful-readlink": ">= 1.0.0" - } - }, - "isexe": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz", - "integrity": "sha1-NvPiLmB1CSD15yQaR2qMakInWtA=", - "dev": true - }, - "which": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/which/-/which-1.2.4.tgz", - "integrity": "sha1-FVf5YIBgTlsRs1meufRbUKnv1yI=", - "dev": true, - "requires": { - "is-absolute": "^0.1.7", - "isexe": "^1.1.1" - } - } - } - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true - }, - "get-stream": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", - "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "git-rev-sync": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-rev-sync/-/git-rev-sync-2.0.0.tgz", - "integrity": "sha512-vnHFv2eocTmt/wHqZm3ksxtVshK4vptT0cEoumk6hAYRFx3do6Qo7xHBTBCv29+r3ZZCQOQ1i328MUCsYF7AUw==", - "dev": true, - "requires": { - "escape-string-regexp": "1.0.5", - "graceful-fs": "4.1.15", - "shelljs": "0.7.7" - } - }, - "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "global-dirs": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-2.0.1.tgz", - "integrity": "sha512-5HqUqdhkEovj2Of/ms3IeS/EekcO54ytHRLV4PEY2rhRwrHXLQjeVEES0Lhka0xwNDtGYn58wyC4s5+MHsOO6A==", - "dev": true, - "requires": { - "ini": "^1.3.5" - } - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "requires": { - "global-prefix": "^3.0.0" - }, - "dependencies": { - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - } - }, - "kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true - } - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", - "dev": true, - "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "got": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz", - "integrity": "sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==", - "dev": true, - "requires": { - "@sindresorhus/is": "^0.14.0", - "@szmarczak/http-timer": "^1.1.2", - "cacheable-request": "^6.0.0", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^4.1.0", - "lowercase-keys": "^1.0.1", - "mimic-response": "^1.0.1", - "p-cancelable": "^1.0.0", - "to-readable-stream": "^1.0.0", - "url-parse-lax": "^3.0.0" - }, - "dependencies": { - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - } - } - }, - "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=", - "dev": true - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", - "dev": true - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "dev": true, - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "has-symbols": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", - "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "has-yarn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz", - "integrity": "sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==", - "dev": true - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "requires": { - "parse-passwd": "^1.0.0" - } - }, - "htmlparser2": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", - "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", - "dev": true, - "requires": { - "domelementtype": "^1.3.1", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^3.1.1" - } - }, - "http-cache-semantics": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", - "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", - "dev": true - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", - "dev": true - }, - "iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", - "dev": true - }, - "ignore": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", - "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", - "dev": true - }, - "import-fresh": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", - "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", - "dev": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - } - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=", - "dev": true - }, - "import-local": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", - "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", - "dev": true, - "requires": { - "pkg-dir": "^3.0.0", - "resolve-cwd": "^2.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", - "dev": true - }, - "infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", - "dev": true - }, - "ini-parser": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/ini-parser/-/ini-parser-0.0.2.tgz", - "integrity": "sha1-+kF4flZ3Y7P/Zdel2alO23QHh+8=", - "dev": true - }, - "inquirer": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", - "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", - "dev": true, - "requires": { - "ansi-escapes": "^3.2.0", - "chalk": "^2.4.2", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^3.0.3", - "figures": "^2.0.0", - "lodash": "^4.17.12", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rxjs": "^6.4.0", - "string-width": "^2.1.0", - "strip-ansi": "^5.1.0", - "through": "^2.3.6" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", - "dev": true - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "dev": true, - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "^3.0.0" - } - } - } - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - } - } - } - } - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, - "invert-kv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-3.0.1.tgz", - "integrity": "sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==", - "dev": true - }, - "is-absolute": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz", - "integrity": "sha1-hHSREZ/MtftDYhfMc39/qtUPYD8=", - "dev": true, - "requires": { - "is-relative": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==", - "dev": true - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-callable": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.0.tgz", - "integrity": "sha512-pyVD9AaGLxtg6srb2Ng6ynWJqkHU9bEM087AKck0w8QwDarTfNcpIYoU8x8Hv2Icm8u6kFJM18Dag8lyqGkviw==", - "dev": true - }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-date-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", - "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", - "dev": true - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "is-docker": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.0.0.tgz", - "integrity": "sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ==", - "dev": true - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", - "dev": true - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.3.2.tgz", - "integrity": "sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g==", - "dev": true, - "requires": { - "global-dirs": "^2.0.1", - "is-path-inside": "^3.0.1" - } - }, - "is-mergeable-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-mergeable-object/-/is-mergeable-object-1.1.1.tgz", - "integrity": "sha512-CPduJfuGg8h8vW74WOxHtHmtQutyQBzR+3MjQ6iDHIYdbOnm1YC7jv43SqCoU8OPGTJD4nibmiryA4kmogbGrA==", - "dev": true - }, - "is-npm": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-4.0.0.tgz", - "integrity": "sha512-96ECIfh9xtDDlPylNPXhzjsykHsMJZ18ASpaWzQyBr4YRTcVjUvzaHayDAES2oU/3KpljhHUjtSRNiDwi0F0ig==", - "dev": true - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true - }, - "is-path-inside": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.2.tgz", - "integrity": "sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg==", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "is-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.0.tgz", - "integrity": "sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw==", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-relative": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz", - "integrity": "sha1-kF/uiuhvRbPsYUvDwVyGnfCHboI=", - "dev": true - }, - "is-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", - "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", - "dev": true - }, - "is-symbol": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", - "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", - "dev": true, - "requires": { - "has-symbols": "^1.0.1" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", - "dev": true - }, - "is-yarn-global": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/is-yarn-global/-/is-yarn-global-0.3.0.tgz", - "integrity": "sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "dev": true - }, - "jed": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/jed/-/jed-1.1.1.tgz", - "integrity": "sha1-elSbvZ/+FYWwzQoZHiAwVb7ldLQ=", - "dev": true - }, - "jetpack-id": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/jetpack-id/-/jetpack-id-1.0.0.tgz", - "integrity": "sha1-LPn7rkbYB0/Ba33gBxyO/rykc6Y=", - "dev": true - }, - "js-select": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/js-select/-/js-select-0.6.0.tgz", - "integrity": "sha1-woTiKCTVknrsli3N8kcXSu+w0ZA=", - "dev": true, - "requires": { - "JSONSelect": "0.2.1", - "traverse": "0.4.x" - } - }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true - }, - "js-yaml": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", - "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", - "dev": true - }, - "json-merge-patch": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-merge-patch/-/json-merge-patch-0.2.3.tgz", - "integrity": "sha1-+ixrWvh9p3uuKWalidUuI+2B/kA=", - "dev": true, - "requires": { - "deep-equal": "^1.0.0" - } - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", - "dev": true - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", - "dev": true - }, - "jsonwebtoken": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz", - "integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==", - "dev": true, - "requires": { - "jws": "^3.2.2", - "lodash.includes": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isinteger": "^4.0.4", - "lodash.isnumber": "^3.0.3", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.once": "^4.0.0", - "ms": "^2.1.1", - "semver": "^5.6.0" - }, - "dependencies": { - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "jszip": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-2.6.1.tgz", - "integrity": "sha1-uI86ey5noqBIFSmCx6N1bZxIKPA=", - "dev": true, - "requires": { - "pako": "~1.0.2" - } - }, - "jwa": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz", - "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==", - "dev": true, - "requires": { - "buffer-equal-constant-time": "1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, - "jws": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz", - "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==", - "dev": true, - "requires": { - "jwa": "^1.4.1", - "safe-buffer": "^5.0.1" - } - }, - "keyv": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz", - "integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==", - "dev": true, - "requires": { - "json-buffer": "3.0.0" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "latest-version": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz", - "integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==", - "dev": true, - "requires": { - "package-json": "^6.3.0" - } - }, - "lazystream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", - "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", - "dev": true, - "requires": { - "readable-stream": "^2.0.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "lcid": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-3.1.1.tgz", - "integrity": "sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==", - "dev": true, - "requires": { - "invert-kv": "^3.0.0" - } - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "lighthouse-logger": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.2.0.tgz", - "integrity": "sha512-wzUvdIeJZhRsG6gpZfmSCfysaxNEr43i+QT+Hie94wvHDKFLi4n7C2GqZ4sTC+PH5b5iktmXJvU87rWvhP3lHw==", - "dev": true, - "requires": { - "debug": "^2.6.8", - "marky": "^1.2.0" - } - }, - "lines-and-columns": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", - "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", - "dev": true - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.19", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", - "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" - }, - "lodash.includes": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz", - "integrity": "sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=", - "dev": true - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", - "dev": true - }, - "lodash.isinteger": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz", - "integrity": "sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=", - "dev": true - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", - "dev": true - }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=", - "dev": true - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true - }, - "lodash.once": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz", - "integrity": "sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=", - "dev": true - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", - "dev": true - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "requires": { - "semver": "^6.0.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "map-age-cleaner": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", - "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", - "dev": true, - "requires": { - "p-defer": "^1.0.0" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "marky": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz", - "integrity": "sha512-md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ==", - "dev": true - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "mdn-browser-compat-data": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/mdn-browser-compat-data/-/mdn-browser-compat-data-1.0.25.tgz", - "integrity": "sha512-4klqILpitRnmWRai5Ols/GXP1eGDYMluAcBRoNZnGNkV2OnkDmpA9hUlM+9pTFym5FGDO5TAm3HweVSVc7ziiQ==", - "dev": true, - "requires": { - "extend": "3.0.2" - } - }, - "mem": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/mem/-/mem-5.1.1.tgz", - "integrity": "sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.3", - "mimic-fn": "^2.1.0", - "p-is-promise": "^2.1.0" - }, - "dependencies": { - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true - } - } - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", - "dev": true - }, - "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "dev": true, - "requires": { - "mime-db": "1.44.0" - } - }, - "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", - "dev": true - }, - "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - }, - "mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", - "dev": true, - "requires": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - } - }, - "moment": { - "version": "2.27.0", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.27.0.tgz", - "integrity": "sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ==", - "dev": true, - "optional": true - }, - "move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", - "dev": true, - "requires": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "multimatch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz", - "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", - "dev": true, - "requires": { - "@types/minimatch": "^3.0.3", - "array-differ": "^3.0.0", - "array-union": "^2.1.0", - "arrify": "^2.0.1", - "minimatch": "^3.0.4" - } - }, - "mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", - "dev": true - }, - "mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI=", - "dev": true, - "optional": true, - "requires": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=", - "dev": true, - "optional": true, - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto=", - "dev": true, - "optional": true, - "requires": { - "glob": "^6.0.1" - } - } - } - }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "requires": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "nan": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", - "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", - "dev": true, - "optional": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", - "dev": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha1-F7CVgZiJef3a/gIB6TG6kzyWy7Q=", - "dev": true - }, - "ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=", - "dev": true, - "optional": true - }, - "neo-async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", - "dev": true - }, - "next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", - "dev": true - }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", - "dev": true - }, - "node-forge": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", - "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==", - "dev": true - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - } - } - }, - "node-notifier": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz", - "integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==", - "dev": true, - "requires": { - "growly": "^1.3.0", - "is-wsl": "^2.1.1", - "semver": "^6.3.0", - "shellwords": "^0.1.1", - "which": "^1.3.1" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "normalize-url": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz", - "integrity": "sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==", - "dev": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "requires": { - "path-key": "^3.0.0" - }, - "dependencies": { - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true - } - } - }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dev": true, - "requires": { - "boolbase": "~1.0.0" - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "object-inspect": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz", - "integrity": "sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==", - "dev": true - }, - "object-is": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.2.tgz", - "integrity": "sha512-5lHCz+0uufF6wZ7CRFWJN3hp8Jqblpgve06U5CMQ3f//6iDjPr2PEo9MWCjEssDsa+UZEL4PkFpr+BMop6aKzQ==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "^3.0.0" - } - }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", - "dev": true, - "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - } - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", - "dev": true, - "requires": { - "mimic-fn": "^1.0.0" - } - }, - "open": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/open/-/open-7.0.0.tgz", - "integrity": "sha512-K6EKzYqnwQzk+/dzJAQSBORub3xlBTxMz+ntpZpH/LyCa1o6KjXhuN+2npAaI9jaSmU3R1Q8NWf4KUWcyytGsQ==", - "dev": true, - "requires": { - "is-wsl": "^2.1.0" - }, - "dependencies": { - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dev": true, - "requires": { - "is-docker": "^2.0.0" - } - } - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dev": true, - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-locale": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-5.0.0.tgz", - "integrity": "sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA==", - "dev": true, - "requires": { - "execa": "^4.0.0", - "lcid": "^3.0.0", - "mem": "^5.0.0" - } - }, - "os-shim": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz", - "integrity": "sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc=", - "dev": true - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "p-cancelable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-1.1.0.tgz", - "integrity": "sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==", - "dev": true - }, - "p-defer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", - "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", - "dev": true - }, - "p-is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", - "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", - "dev": true - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "package-json": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz", - "integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==", - "dev": true, - "requires": { - "got": "^9.6.0", - "registry-auth-token": "^4.0.0", - "registry-url": "^5.0.0", - "semver": "^6.2.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "pako": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", - "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", - "dev": true - }, - "parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", - "dev": true, - "requires": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "requires": { - "callsites": "^3.0.0" - } - }, - "parse-asn1": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", - "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", - "dev": true, - "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-json": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", - "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1", - "lines-and-columns": "^1.1.6" - } - }, - "parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", - "dev": true - }, - "parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", - "dev": true - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=", - "dev": true - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, - "pino": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/pino/-/pino-6.3.2.tgz", - "integrity": "sha512-EiP3L1hoFw19KPocWimjnfXeysld0ne89ZRQ+bf8nAeA2TyuLoggNlibAi+Kla67GvQBopLdIZOsh1z/Lruo5Q==", - "dev": true, - "requires": { - "fast-redact": "^2.0.0", - "fast-safe-stringify": "^2.0.7", - "flatstr": "^1.0.12", - "pino-std-serializers": "^2.4.2", - "quick-format-unescaped": "^4.0.1", - "sonic-boom": "^1.0.0" - } - }, - "pino-std-serializers": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.4.2.tgz", - "integrity": "sha512-WaL504dO8eGs+vrK+j4BuQQq6GLKeCCcHaMB2ItygzVURcL1CycwNEUHTD/lHFHs/NL5qAz2UKrjYWXKSf4aMQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, - "postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", - "dev": true, - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "dependencies": { - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", - "dev": true - }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", - "dev": true - }, - "probe-image-size": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/probe-image-size/-/probe-image-size-5.0.0.tgz", - "integrity": "sha512-V6uBYw5eBc5UVIE7MUZD6Nxg0RYuGDWLDenEn0B1WC6PcTvn1xdQ6HLDDuznefsiExC6rNrCz7mFRBo0f3Xekg==", - "dev": true, - "requires": { - "deepmerge": "^4.0.0", - "inherits": "^2.0.3", - "next-tick": "^1.0.0", - "request": "^2.83.0", - "stream-parser": "~0.3.1" - } - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", - "dev": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", - "dev": true - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true - }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", - "dev": true - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dev": true, - "requires": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" - }, - "dependencies": { - "pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "quick-format-unescaped": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.1.tgz", - "integrity": "sha512-RyYpQ6Q5/drsJyOhrWHYMWTedvjTIat+FTwv0K4yoUxzvekw2aRHMQJLlnvt8UantkZg2++bEzD9EdxXqkWf4A==", - "dev": true - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", - "dev": true - } - } - }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - }, - "regenerator-runtime": { - "version": "0.13.5", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz", - "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==", - "dev": true - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexp.prototype.flags": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz", - "integrity": "sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.0-next.1" - } - }, - "regexpp": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", - "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==", - "dev": true - }, - "registry-auth-token": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.1.1.tgz", - "integrity": "sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA==", - "dev": true, - "requires": { - "rc": "^1.2.8" - } - }, - "registry-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-5.1.0.tgz", - "integrity": "sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==", - "dev": true, - "requires": { - "rc": "^1.2.8" - } - }, - "relaxed-json": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/relaxed-json/-/relaxed-json-1.0.3.tgz", - "integrity": "sha512-b7wGPo7o2KE/g7SqkJDDbav6zmrEeP4TK2VpITU72J/M949TLe/23y/ZHJo+pskcGM52xIfFoT9hydwmgr1AEg==", - "dev": true, - "requires": { - "chalk": "^2.4.2", - "commander": "^2.6.0" - } - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", - "dev": true - }, - "resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "resolve-cwd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", - "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", - "dev": true, - "requires": { - "resolve-from": "^3.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", - "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", - "dev": true - } - } - }, - "resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", - "dev": true, - "requires": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "dependencies": { - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - } - } - }, - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", - "dev": true, - "requires": { - "lowercase-keys": "^1.0.0" - } - }, - "restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", - "dev": true, - "requires": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true - }, - "run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", - "dev": true, - "requires": { - "aproba": "^1.1.1" - } - }, - "rxjs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.0.tgz", - "integrity": "sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg==", - "dev": true, - "requires": { - "tslib": "^1.9.0" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "safe-json-stringify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", - "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", - "dev": true, - "optional": true - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - } - }, - "semver": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz", - "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==", - "dev": true - }, - "semver-diff": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-3.1.1.tgz", - "integrity": "sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==", - "dev": true, - "requires": { - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } - } - }, - "serialize-javascript": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-2.1.2.tgz", - "integrity": "sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ==", - "dev": true - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "dev": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", - "dev": true - }, - "shell-quote": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", - "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", - "dev": true, - "requires": { - "array-filter": "~0.0.0", - "array-map": "~0.0.0", - "array-reduce": "~0.0.0", - "jsonify": "~0.0.0" - } - }, - "shelljs": { - "version": "0.7.7", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz", - "integrity": "sha1-svXHfvlxSPS09uImguELuoZnz/E=", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "shellwords": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", - "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", - "dev": true - }, - "sign-addon": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/sign-addon/-/sign-addon-2.0.5.tgz", - "integrity": "sha512-dVjIWe1VJ2VQCdScREWXWECmJhgjpJMqwPKkW+L78PPx2Jyr/t+//kNHqG1hYrmIsvQN7vGjAjv9s7ix0vw0zA==", - "dev": true, - "requires": { - "common-tags": "1.8.0", - "core-js": "3.6.4", - "deepcopy": "2.0.0", - "es6-error": "4.1.1", - "es6-promisify": "6.0.2", - "jsonwebtoken": "8.5.1", - "mz": "2.7.0", - "request": "2.88.0", - "source-map-support": "0.5.16", - "stream-to-promise": "2.2.0" - }, - "dependencies": { - "core-js": { - "version": "3.6.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz", - "integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==", - "dev": true - }, - "es6-promisify": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-6.0.2.tgz", - "integrity": "sha512-eO6vFm0JvqGzjWIQA6QVKjxpmELfhWbDUWHm1rPfIbn55mhKPiAa5xpLmQWJrNa629ZIeQ8ZvMAi13kvrjK6Mg==", - "dev": true - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - }, - "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.0", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "source-map-support": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.16.tgz", - "integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "dev": true, - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - } - } - } - }, - "signal-exit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", - "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", - "dev": true - }, - "slice-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", - "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "astral-regex": "^1.0.0", - "is-fullwidth-code-point": "^2.0.0" - } - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - } - }, - "sonic-boom": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-1.0.1.tgz", - "integrity": "sha512-o9tx+bonVEXSaPtptyXQXpP8l6UV9Bi3im2geZskvWw2a/o/hrbWI7EBbbv+rOx6Hubnzun9GgH4WfbgEA3MFQ==", - "dev": true, - "requires": { - "atomic-sleep": "^1.0.0", - "flatstr": "^1.0.12" - } - }, - "source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.5.12", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", - "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, - "spawn-sync": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz", - "integrity": "sha1-sAeZVX63+wyDdsKdROih6mfldHY=", - "dev": true, - "requires": { - "concat-stream": "^1.4.7", - "os-shim": "^0.1.2" - } - }, - "split": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz", - "integrity": "sha1-zQ7qXmOiEd//frDwkcQTPi0N0o8=", - "dev": true, - "requires": { - "through": "2" - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "ssri": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", - "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", - "dev": true, - "requires": { - "figgy-pudding": "^3.5.1" - } - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "stream-parser": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz", - "integrity": "sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=", - "dev": true, - "requires": { - "debug": "2" - } - }, - "stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", - "dev": true - }, - "stream-to-array": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz", - "integrity": "sha1-u/azn19D7DC8cbq8s3VXrOzzQ1M=", - "dev": true, - "requires": { - "any-promise": "^1.1.0" - } - }, - "stream-to-promise": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/stream-to-promise/-/stream-to-promise-2.2.0.tgz", - "integrity": "sha1-se2y4cjLESidG1A8CNPyrvUeZQ8=", - "dev": true, - "requires": { - "any-promise": "~1.3.0", - "end-of-stream": "~1.1.0", - "stream-to-array": "~2.3.0" - }, - "dependencies": { - "end-of-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", - "integrity": "sha1-6TUyWLqpEIll78QcsO+K3i88+wc=", - "dev": true, - "requires": { - "once": "~1.3.0" - } - }, - "once": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", - "integrity": "sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA=", - "dev": true, - "requires": { - "wrappy": "1" - } - } - } - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "dev": true, - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "string.prototype.trimend": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz", - "integrity": "sha512-LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "string.prototype.trimstart": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz", - "integrity": "sha512-XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==", - "dev": true, - "requires": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.5" - } - }, - "string_decoder": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz", - "integrity": "sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true - }, - "strip-bom-buf": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-2.0.0.tgz", - "integrity": "sha512-gLFNHucd6gzb8jMsl5QmZ3QgnUJmp7qn4uUSHNwEXumAp7YizoGYw19ZUVfuq4aBOQUtyn2k8X/CwzWB73W2lQ==", - "dev": true, - "requires": { - "is-utf8": "^0.2.1" - } - }, - "strip-bom-stream": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-4.0.0.tgz", - "integrity": "sha512-0ApK3iAkHv6WbgLICw/J4nhwHeDZsBxIIsOD+gHgZICL6SeJ0S9f/WZqemka9cjkTyMN5geId6e8U5WGFAn3cQ==", - "dev": true, - "requires": { - "first-chunk-stream": "^3.0.0", - "strip-bom-buf": "^2.0.0" - } - }, - "strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true - }, - "strip-json-comments": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", - "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "table": { - "version": "5.4.6", - "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", - "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", - "dev": true, - "requires": { - "ajv": "^6.10.2", - "lodash": "^4.17.14", - "slice-ansi": "^2.1.0", - "string-width": "^3.0.0" - }, - "dependencies": { - "ajv": { - "version": "6.12.3", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", - "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true - } - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - }, - "tar-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", - "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", - "dev": true, - "requires": { - "bl": "^1.0.0", - "buffer-alloc": "^1.2.0", - "end-of-stream": "^1.0.0", - "fs-constants": "^1.0.0", - "readable-stream": "^2.3.0", - "to-buffer": "^1.1.1", - "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "term-size": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-2.2.0.tgz", - "integrity": "sha512-a6sumDlzyHVJWb8+YofY4TW112G6p2FCPEAFk+59gIYHv3XHRhm9ltVQ9kli4hNWeQBwSpe8cRN25x0ROunMOw==", - "dev": true - }, - "terser": { - "version": "4.6.12", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.12.tgz", - "integrity": "sha512-fnIwuaKjFPANG6MAixC/k1TDtnl1YlPLUlLVIxxGZUn1gfUx2+l3/zGNB72wya+lgsb50QBi2tUV75RiODwnww==", - "dev": true, - "requires": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - } - }, - "terser-webpack-plugin": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz", - "integrity": "sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA==", - "dev": true, - "requires": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^2.1.2", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", - "dev": true - }, - "thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", - "dev": true, - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "requires": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "timers-browserify": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", - "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "tmp": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.1.0.tgz", - "integrity": "sha512-J7Z2K08jbGcdA1kkQpJSqLF6T0tdQqpR2pnSUXsIchbPdTI9v3e85cLW0d6WDhwuAleOV71j2xWs8qMPfK7nKw==", - "dev": true, - "requires": { - "rimraf": "^2.6.3" - } - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, - "to-buffer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", - "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-readable-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/to-readable-stream/-/to-readable-stream-1.0.0.tgz", - "integrity": "sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==", - "dev": true - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - } - }, - "tosource": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/tosource/-/tosource-1.0.0.tgz", - "integrity": "sha1-QtiN0RZhi88A1hBt1URvNCeQL/E=", - "dev": true - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dev": true, - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "tr46": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", - "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", - "dev": true, - "requires": { - "punycode": "^2.1.1" - } - }, - "traverse": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.4.6.tgz", - "integrity": "sha1-0EsigOTHkqWBVCnve4tgxkyczDQ=", - "dev": true - }, - "tslib": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", - "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", - "dev": true - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", - "dev": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "dev": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "dev": true, - "requires": { - "prelude-ls": "~1.1.2" - } - }, - "type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true - }, - "type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", - "dev": true - }, - "typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dev": true, - "requires": { - "is-typedarray": "^1.0.0" - } - }, - "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^0.4.3" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.1", - "to-object-path": "^0.3.0" - } - } - } - }, - "unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", - "dev": true, - "requires": { - "unique-slug": "^2.0.0" - } - }, - "unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4" - } - }, - "unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dev": true, - "requires": { - "crypto-random-string": "^2.0.0" - } - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, - "update-notifier": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-4.0.0.tgz", - "integrity": "sha512-p9zf71hWt5GVXM4iEBujpUgx8mK9AWiCCapEJm/O1z5ntCim83Z1ATqzZFBHFYqx03laMqv8LiDgs/7ikXjf/g==", - "dev": true, - "requires": { - "boxen": "^4.2.0", - "chalk": "^3.0.0", - "configstore": "^5.0.0", - "has-yarn": "^2.1.0", - "import-lazy": "^2.1.0", - "is-ci": "^2.0.0", - "is-installed-globally": "^0.3.1", - "is-npm": "^4.0.0", - "is-yarn-global": "^0.3.0", - "latest-version": "^5.0.0", - "semver-diff": "^3.1.1", - "xdg-basedir": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", - "dev": true, - "requires": { - "prepend-http": "^2.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "requires": { - "inherits": "2.0.3" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "dev": true - }, - "v8-compile-cache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", - "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", - "dev": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "dev": true - }, - "watchpack": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz", - "integrity": "sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==", - "dev": true, - "requires": { - "chokidar": "^2.1.8", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - } - }, - "wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", - "dev": true, - "requires": { - "defaults": "^1.0.3" - } - }, - "web-ext": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/web-ext/-/web-ext-4.3.0.tgz", - "integrity": "sha512-1BCFeXuMY3QHnlkiUqgCV4ODNN84X3mX4GJk+Gb8tFv0Z8Grj4LneYa4A/0txoxpsz5E05THnKtb31t0XPJ8EQ==", - "dev": true, - "requires": { - "@babel/polyfill": "7.7.0", - "@babel/runtime": "7.7.7", - "@cliqz-oss/firefox-client": "0.3.1", - "@cliqz-oss/node-firefox-connect": "1.2.1", - "adbkit": "2.11.1", - "addons-linter": "1.26.0", - "bunyan": "1.8.12", - "camelcase": "5.3.1", - "chrome-launcher": "0.13.3", - "debounce": "1.2.0", - "decamelize": "3.2.0", - "es6-error": "4.1.1", - "event-to-promise": "0.8.0", - "firefox-profile": "1.3.1", - "fx-runner": "1.0.12", - "git-rev-sync": "2.0.0", - "import-fresh": "3.2.1", - "mkdirp": "1.0.4", - "multimatch": "4.0.0", - "mz": "2.7.0", - "node-notifier": "6.0.0", - "open": "7.0.0", - "parse-json": "5.0.0", - "sign-addon": "2.0.5", - "source-map-support": "0.5.19", - "stream-to-promise": "2.2.0", - "strip-bom": "4.0.0", - "strip-json-comments": "3.0.1", - "tmp": "0.1.0", - "update-notifier": "4.0.0", - "watchpack": "1.6.1", - "ws": "7.2.3", - "yargs": "15.3.1", - "zip-dir": "1.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "dev": true, - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "requires": { - "p-locate": "^4.1.0" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "requires": { - "p-limit": "^2.2.0" - } - }, - "path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true - }, - "source-map-support": { - "version": "0.5.19", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", - "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "yargs": { - "version": "15.3.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.3.1.tgz", - "integrity": "sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA==", - "dev": true, - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.1" - }, - "dependencies": { - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - } - } - }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - } - } - } - } - }, - "webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true - }, - "webpack": { - "version": "4.43.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.43.0.tgz", - "integrity": "sha512-GW1LjnPipFW2Y78OOab8NJlCflB7EFskMih2AHdvjbpKMeDJqEgSx24cXXXiPS65+WSwVyxtDsJH6jGX2czy+g==", - "dev": true, - "requires": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.1.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.6.1", - "webpack-sources": "^1.4.1" - }, - "dependencies": { - "acorn": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz", - "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==", - "dev": true - }, - "ajv": { - "version": "6.12.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.2.tgz", - "integrity": "sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "fast-deep-equal": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", - "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==", - "dev": true - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", - "dev": true - }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } - } - } - }, - "webpack-cli": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", - "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", - "dev": true, - "requires": { - "chalk": "^2.4.2", - "cross-spawn": "^6.0.5", - "enhanced-resolve": "^4.1.1", - "findup-sync": "^3.0.0", - "global-modules": "^2.0.0", - "import-local": "^2.0.0", - "interpret": "^1.4.0", - "loader-utils": "^1.4.0", - "supports-color": "^6.1.0", - "v8-compile-cache": "^2.1.1", - "yargs": "^13.3.2" - }, - "dependencies": { - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true - }, - "enhanced-resolve": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.2.0.tgz", - "integrity": "sha512-S7eiFb/erugyd1rLb6mQ3Vuq+EXHv5cpCkNqqIkYkBgN2QdFnyCZzFBleqwGEx4lgNGYij81BWnCrFNK7vxvjQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - } - }, - "interpret": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", - "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", - "dev": true - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - } - }, - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dev": true, - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "whatwg-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.1.0.tgz", - "integrity": "sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^2.0.2", - "webidl-conversions": "^5.0.0" - } - }, - "when": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/when/-/when-3.7.7.tgz", - "integrity": "sha1-q6A/w7tzbWyIsJHQE9io5ZDYRxg=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", - "dev": true - }, - "widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "requires": { - "string-width": "^4.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", - "dev": true - }, - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true - }, - "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", - "dev": true, - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "dev": true, - "requires": { - "ansi-regex": "^5.0.0" - } - } - } - }, - "winreg": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/winreg/-/winreg-0.0.12.tgz", - "integrity": "sha1-BxBVVLoanQiXklHRKUdb/64wBrc=", - "dev": true - }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "dev": true - }, - "worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dev": true, - "requires": { - "errno": "~0.1.7" - } - }, - "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", - "dev": true - }, - "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", - "dev": true, - "requires": { - "ansi-regex": "^4.1.0" - } - } - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "write": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", - "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", - "dev": true, - "requires": { - "mkdirp": "^0.5.1" - } - }, - "write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "ws": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.2.3.tgz", - "integrity": "sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ==", - "dev": true - }, - "xdg-basedir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", - "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true - }, - "xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "dev": true, - "requires": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - } - }, - "xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "dev": true - }, - "xregexp": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-4.3.0.tgz", - "integrity": "sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g==", - "dev": true, - "requires": { - "@babel/runtime-corejs3": "^7.8.3" - } - }, - "xtend": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", - "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", - "dev": true - }, - "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", - "dev": true - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "dev": true, - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" - } - }, - "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", - "dev": true, - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "dependencies": { - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - } - } - }, - "yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", - "dev": true, - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, - "zip-dir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/zip-dir/-/zip-dir-1.0.2.tgz", - "integrity": "sha1-JT+QeurWKiGs2HIdi4gDKyQRwFE=", - "dev": true, - "requires": { - "async": "^1.5.2", - "jszip": "^2.4.0" - }, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", - "dev": true - } - } - }, - "zip-stream": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz", - "integrity": "sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ=", - "dev": true, - "requires": { - "archiver-utils": "^1.3.0", - "compress-commons": "^1.2.0", - "lodash": "^4.8.0", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - } - } -} diff --git a/addon/package.json b/addon/package.json deleted file mode 100644 index a5164e2ba..000000000 --- a/addon/package.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "name": "gecko-code-coverage", - "version": "0.11.0", - "description": "Extension that augments several Mozilla websites (DXR, Searchfox) with code coverage information.", - "dependencies": { - "lodash": "^4.17.19" - }, - "peerDependencies": { - "eslint": ">=0.8.0" - }, - "devDependencies": { - "eslint-plugin-mozilla": "^0.9.0", - "eslint-plugin-no-unsanitized": "^3.1.2", - "web-ext": "^4.3.0", - "webpack": "^4.43.0", - "webpack-cli": "^3.3.12" - }, - "scripts": { - "lint": "eslint src/*.js", - "build": "webpack", - "build:watch": "npm run build -- -w", - "start": "npm run build && web-ext run --start-url=https://searchfox.org/mozilla-central/source/js/src/jsdate.cpp --start-url=https://hg.mozilla.org/mozilla-central/file/tip/dom/ipc/BrowserHost.cpp", - "test": "web-ext lint", - "export": "web-ext build" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/mozilla/code-coverage-addon.git" - }, - "author": "Marco Castelluccio", - "license": "MPL-2.0", - "bugs": { - "url": "https://github.com/mozilla/code-coverage-addon/issues" - }, - "homepage": "https://github.com/mozilla/code-coverage-addon#readme", - "webExt": { - "verbose": true - } -} diff --git a/addon/src/button.js b/addon/src/button.js deleted file mode 100644 index 463aeb2fb..000000000 --- a/addon/src/button.js +++ /dev/null @@ -1,62 +0,0 @@ -/* 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/. */ - -'use strict'; - -import {fetchCoverage} from './coverage'; - -let resultPromise; -export async function getCoverage(revPromise, path) { - if (!resultPromise) { - resultPromise = (async function() { - const rev = await revPromise; - return fetchCoverage(rev, path); - })(); - } - - return resultPromise; -} - -function disableButton(button, text) { - button.setAttribute('disabled', 'disabled'); - button.style['cursor'] = 'not-allowed'; - button.title = text; -} - -export function injectToggle(revPromise, path, applyOverlay, removeOverlay) { - // Preload coverage data. - getCoverage(revPromise, path); - - const spinner = document.createElement('div'); - spinner.classList.add('gecko_coverage_loader', 'gecko_coverage_loader_dxr'); - - let button = document.createElement('button'); - button.type = 'button'; - button.textContent = 'Code Coverage '; - button.className = 'gecko_code_coverage_toggle_button'; - - let enabled = false; - async function toggle() { - enabled = !enabled; - if (enabled) { - button.appendChild(spinner); - try { - await applyOverlay(revPromise, path); - button.style.backgroundColor = 'lightgrey'; - } catch (ex) { - button.style.backgroundColor = 'red'; - disableButton(button, 'Error retrieving coverage information for this file'); - } finally { - button.removeChild(spinner); - } - } else { - removeOverlay(); - button.style.backgroundColor = 'white'; - } - } - - button.onclick = toggle; - - return button; -} diff --git a/addon/src/config.js b/addon/src/config.js deleted file mode 100644 index e178ff7fa..000000000 --- a/addon/src/config.js +++ /dev/null @@ -1 +0,0 @@ -export const BACKEND_URL = 'https://api.coverage.moz.tools'; diff --git a/addon/src/coverage.js b/addon/src/coverage.js deleted file mode 100644 index 232dad0f2..000000000 --- a/addon/src/coverage.js +++ /dev/null @@ -1,26 +0,0 @@ -/* 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/. */ - -'use strict'; - -import {BACKEND_URL} from './config'; -const extensions = require('extensions.json') - -export async function fetchCoverage(rev, path) { - let response = await fetch(`${BACKEND_URL}/v2/path?path=${path}&changeset=${rev}`); - return await response.json(); -} - -export async function gitToHg(gitrev) { - let response = await fetch(`https://mapper.mozilla-releng.net/gecko-dev/rev/git/${gitrev}`); - if (!response.ok) { - throw new Error(`Error retrieving git to mercurial mapping for ${gitrev}.`); - } - let text = await response.text(); - return text.split(' ')[1]; -} - -export function isCoverageSupported(path) { - return extensions.findIndex(ext => path.endsWith(`.${ext}`)) != -1; -} diff --git a/addon/src/dxr-common.js b/addon/src/dxr-common.js deleted file mode 100644 index 285115b22..000000000 --- a/addon/src/dxr-common.js +++ /dev/null @@ -1,76 +0,0 @@ -/* 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/. */ - -'use strict'; - -import {getCoverage} from './button'; - -let lineNoMap = (function() { - let mapper; - - return function(l) { - if (!mapper) { - if (document.getElementById('l1')) { - mapper = l => `l${l}`; - } else if (document.getElementById('1')) { - mapper = l => l; - } else { - throw new Error('Unknown line number element.'); - } - } - - return mapper(l); - }; -})(); - -export async function applyOverlay(revPromise, path) { - let result = await getCoverage(revPromise, path); - - if (!result.hasOwnProperty('coverage')) { - throw new Error('No \'coverage\' field'); - } - for (var l in result.coverage) { - l = parseInt(l) + 1; - const line_no = document.getElementById(lineNoMap(l)); - const line = document.getElementById(`line-${l}`); - if (result.coverage[l] > 0) { - line_no.style.backgroundColor = 'greenyellow'; - line.style.backgroundColor = 'greenyellow'; - } else { - line_no.style.backgroundColor = 'tomato'; - line.style.backgroundColor = 'tomato'; - } - } -} - -export function removeOverlay() { - let l = 1; - var line_no = true; - while (line_no) { - line_no = document.getElementById(lineNoMap(l)); - if (!line_no) { - break; - } - const line = document.getElementById(`line-${l}`); - - line_no.style.backgroundColor = ''; - line.style.backgroundColor = ''; - - l += 1; - } -} - -// Get the currently open file path. -export function getPath() { - const breadcrumbs = document.querySelector('.breadcrumbs'); - if (!breadcrumbs) { - return; - } - - return breadcrumbs.lastElementChild.href.split('/mozilla-central/source/')[1]; -} - -export function getNavigationPanel() { - return document.getElementById('panel-content'); -} diff --git a/addon/src/dxr.css b/addon/src/dxr.css deleted file mode 100644 index 63621f838..000000000 --- a/addon/src/dxr.css +++ /dev/null @@ -1,15 +0,0 @@ -/* 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/. */ - -.gecko_code_coverage_toggle_button { - background-color: white; - margin-bottom: .2rem; - margin-right: .2rem; - padding: .3rem; - border: 1px solid #999; - width: auto; - min-width: 100px; - border-radius: .2rem; - cursor: pointer; -} diff --git a/addon/src/dxr.js b/addon/src/dxr.js deleted file mode 100644 index 04113b142..000000000 --- a/addon/src/dxr.js +++ /dev/null @@ -1,35 +0,0 @@ -/* 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/. */ - -'use strict'; - -import {injectToggle} from './button'; -import {isCoverageSupported} from './coverage'; -import {applyOverlay, removeOverlay, getPath, getNavigationPanel} from './dxr-common'; - -(function() { - // Don't do anything if this isn't a file. - const panel = getNavigationPanel(); - if (!panel) { - return; - } - - const path = getPath(); - if (!path || !isCoverageSupported(path)) { - return; - } - - // Get the current revision. - const revPattern = new RegExp('Mercurial \\(([0-9a-f]+)\\)'); - const m = panel.innerHTML.match(revPattern); - const revPromise = Promise.resolve(m[1]); - - const button = injectToggle(revPromise, path, applyOverlay, removeOverlay); - if (!button) { - return; - } - - let treeSelector = document.getElementById('tree-selector'); - treeSelector.appendChild(button); -})(); diff --git a/addon/src/hgmo.js b/addon/src/hgmo.js deleted file mode 100644 index 4d4b8c8b2..000000000 --- a/addon/src/hgmo.js +++ /dev/null @@ -1,55 +0,0 @@ -/* 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/. */ - -"use strict"; - -import {getCoverage, injectToggle} from './button'; - -let filename = ""; -let revision = ""; -const linePattern = new RegExp("^l([0-9]+)$"); - -document.querySelectorAll("title").forEach(title => { - const titlePattern = new RegExp("^mozilla-central: ([^@]+)@([0-9a-f]+)(?: \\(annotated\\))?$"); - const m = title.innerText.match(titlePattern); - if (m) { - filename = m[1]; - revision = m[2]; - } -}); - -async function applyOverlay(revPromise, path) { - let result = await getCoverage(revPromise, path); - if (!result.hasOwnProperty("coverage")) { - throw new Error("No 'coverage' field"); - } - const data = result["coverage"]; - document.querySelectorAll("[id^='l']").forEach(e => { - const m = e.id.match(linePattern); - if (!m) { - return; - } - const linenum = m[1]; - if (data.hasOwnProperty(linenum)) { - e.style.backgroundColor = (data[linenum] > 0) ? "greenyellow" : "tomato"; - } - }); -} - -function removeOverlay() { - document.querySelectorAll("[id^='l']").forEach(e => { - const m = e.id.match(linePattern); - if (m) { - e.style.backgroundColor = ""; - } - }); -} - -const div_headers = document.querySelectorAll(".page_header"); -if (div_headers.length > 1) { - throw new Error("Only one .page_header was expected"); -} -const div_header = div_headers[0]; -const button = injectToggle(revision, filename, applyOverlay, removeOverlay); -div_header.append(button); diff --git a/addon/src/searchfox.js b/addon/src/searchfox.js deleted file mode 100644 index e48cdb7bb..000000000 --- a/addon/src/searchfox.js +++ /dev/null @@ -1,39 +0,0 @@ -/* 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/. */ - -'use strict'; - -import {injectToggle} from './button'; -import {gitToHg, isCoverageSupported} from './coverage'; -import {applyOverlay, removeOverlay, getPath, getNavigationPanel} from './dxr-common'; - -(async function() { - // Don't do anything if this isn't a file. - if (!getNavigationPanel()) { - return; - } - - const path = getPath(); - if (!path || !isCoverageSupported(path)) { - return; - } - - // Get the current revision. - const revPattern = new RegExp('/mozilla-central/commit/([0-9a-f]+)"'); - const revSpan = document.getElementById('rev-id'); - const m = revSpan.innerHTML.match(revPattern); - const gitRev = m[1]; - const revPromise = gitToHg(gitRev); - - const button = injectToggle(revPromise, path, applyOverlay, removeOverlay); - if (!button) { - return; - } - - const breadcrumbs = document.querySelector('.breadcrumbs'); - if (!breadcrumbs) { - return; - } - breadcrumbs.parentNode.insertBefore(button, breadcrumbs); -})(); diff --git a/addon/src/socorro.css b/addon/src/socorro.css deleted file mode 100644 index 69f600712..000000000 --- a/addon/src/socorro.css +++ /dev/null @@ -1,12 +0,0 @@ -/* 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/. */ - -.codecov-icon { - background: url("codecov.png"); - background-repeat: no-repeat; - background-size: auto 1.3em; - width: 1.3em; - height: 1.3em; - display: inline-block; -} diff --git a/addon/src/socorro.js b/addon/src/socorro.js deleted file mode 100644 index a5b872120..000000000 --- a/addon/src/socorro.js +++ /dev/null @@ -1,89 +0,0 @@ -/* 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/. */ - -"use strict"; - -import {isCoverageSupported, fetchCoverage} from './coverage'; - -const hgurlPattern = new RegExp("^http[s]?://hg\\.mozilla\\.org/mozilla-central/annotate/([0-9a-f]+)/([^#]+)#l([0-9]+)$"); -// fileinfo: filename => { revision => [{line, element}, ...] } -const fileinfo = {}; -document.querySelectorAll("#frames table:first-of-type td > a[href^='https://hg.mozilla.org/mozilla-central/annotate/']").forEach(a => { - const m = a.href.match(hgurlPattern); - if (!m) { - return; - } - const filename = m[2]; - if (!isCoverageSupported(filename)) { - return; - } - const line = m[3]; - if (line === "0") { // shouldn't happen... but irl it happens - return; - } - const revision = m[1].slice(0, 12); // shorten the revision - const info = { - "line": line, - "element": a.parentNode - }; - let finfo; - if (filename in fileinfo) { - finfo = fileinfo[filename]; - } else { - finfo = fileinfo[filename] = {}; - } - if (revision in finfo) { - finfo[revision].push(info); - } else { - finfo[revision] = [info]; - } -}); - -if (Object.keys(fileinfo).length != 0) { - const spinnerDiv = document.createElement("div"); - spinnerDiv.classList.add("gecko_coverage_loader", "gecko_coverage_loader_socorro"); - spinnerDiv.style.display = "inline-block"; - - const linkToCodecov = document.createElement("a"); - linkToCodecov.setAttribute("target", "_blank"); - const icon = document.createElement("div"); - icon.setAttribute("class", "codecov-icon"); - linkToCodecov.append(icon); - - for (const [filename, info] of Object.entries(fileinfo)) { - for (const [revision, lineElements] of Object.entries(info)) { - // Add the spinners - for (const le of lineElements) { - const e = spinnerDiv.cloneNode(); - le.element.append(e); - le.element = e; - } - fetchCoverage(revision, filename).then(data => { - if (data !== null && !data.hasOwnProperty("error")) { - if (!data.hasOwnProperty("coverage")) { - throw new Error("No 'data' field"); - } - const covData = data["coverage"]; - for (const le of lineElements) { - const line = le.line; - if (line in covData) { - // line is covered or uncovered - le.element.parentNode.style.backgroundColor = covData[line] == 0 ? "tomato" : "greenyellow"; - const gitBuildChangeset = data["git_build_changeset"]; - const codecovUrl = `https://codecov.io/gh/mozilla/gecko-dev/src/${gitBuildChangeset}/${filename}#L${line}`; - const a = linkToCodecov.cloneNode(true); - a.setAttribute("href", codecovUrl); - le.element.parentNode.append(a); - } - } - } - }).finally(() => { - // Remove the spinners - for (const le of lineElements) { - le.element.remove(); - } - }); - } - } -} diff --git a/addon/src/spinner.css b/addon/src/spinner.css deleted file mode 100644 index f1b806ccf..000000000 --- a/addon/src/spinner.css +++ /dev/null @@ -1,25 +0,0 @@ -/* 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/. */ - -@keyframes gecko_coverage_loader_spin { - 0% { transform: rotate(0deg); } - 100% { transform: rotate(360deg); } -} - -.gecko_coverage_loader { - border: 3px solid #f3f3f3; - border-radius: 50%; - width: 13px; - height: 13px; - animation: gecko_coverage_loader_spin 2s linear infinite; - display: inline-block; -} - -.gecko_coverage_loader_dxr { - border-top: 3px solid black; -} - -.gecko_coverage_loader_socorro { - border-top: 3px solid blue; -} diff --git a/addon/webpack.config.js b/addon/webpack.config.js deleted file mode 100644 index b7e999bf1..000000000 --- a/addon/webpack.config.js +++ /dev/null @@ -1,30 +0,0 @@ -const path = require('path'); -const webpack = require('webpack'); - -module.exports = { - mode: 'development', - entry: { - 'dxr': './src/dxr.js', - 'searchfox': './src/searchfox.js', - 'socorro': './src/socorro.js', - 'hgmo': './src/hgmo.js', - }, - plugins: [ - // Since some NodeJS modules expect to be running in Node, it is helpful - // to set this environment var to avoid reference errors. - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify('production'), - }), - ], - output: { - path: path.resolve(__dirname, 'build'), - filename: '[name].js' - }, - resolve : { - modules : ['src', 'assets'], - }, - - // This will expose source map files so that errors will point to your - // original source files instead of the transpiled files. - devtool: 'sourcemap', -}; diff --git a/backend/Dockerfile b/backend/Dockerfile deleted file mode 100644 index 2c914dd66..000000000 --- a/backend/Dockerfile +++ /dev/null @@ -1,9 +0,0 @@ -FROM python:3.8.4-slim - -ADD tools /src/tools -ADD backend /src/backend - -RUN cd /src/tools && pip install --disable-pip-version-check --no-cache-dir --quiet . -RUN cd /src/backend && pip install --disable-pip-version-check --no-cache-dir --quiet . - -CMD ["gunicorn", "code_coverage_backend.flask:app", "--timeout", "30"] diff --git a/backend/MANIFEST.in b/backend/MANIFEST.in deleted file mode 100644 index 304ee87da..000000000 --- a/backend/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -include code_coverage_backend/*.yml diff --git a/backend/README.md b/backend/README.md deleted file mode 100644 index 16870df7d..000000000 --- a/backend/README.md +++ /dev/null @@ -1,63 +0,0 @@ -# Mozilla Code Coverage Backend - -This project is a Python 3 REST API, powered by [Flask](https://palletsprojects.com/p/flask/) that serves code coverage data aggregated by the bot project. - -The production instance of this service is hosted on https://api.coverage.moz.tools - -We currently have several endpoints implemented: - -* `/v2/extensions` lists all the file extensions supported by the code coverage suite, -* `/v2/latest` lists the 10 latest code coverage reports ingested on the backend and available to query, -* `/v2/history` shows the code coverage progression for a specific path in a repository, -* `/v2/path` provides the code coverage information for a directory or file in a repository, at a given revision. - - -## Setup instructions for developers - -```shell -mkvirtualenv -p /usr/bin/python3 ccov-backend -cd backend/ -pip install -r requirements.txt -r requirements-dev.txt -pip install -e . -``` - -You should now be able to run tests and linting: - -```shell -pre-commit run -a -``` - -## Run a redis instance through docker - -```shell -docker run -v /tmp/ccov-redis:/data -p 6379:6379 redis -``` - -## Run the webserver - -The development webserver will run on **http://localhost:8000** - -You need to setup a local YAML configuration file, with the following content: - -```yaml ---- -common: - APP_CHANNEL: dev - GOOGLE_CLOUD_STORAGE: null -``` - -Using your local configuration: - -```shell -LOCAL_CONFIGURATION=/path/to/code-coverage-conf.yml ./run.sh -``` - -You can specify a firefox-ci Taskcluster secret (e.g. project-relman/code-coverage/dev) instead using: - -```shell -TASKCLUSTER_SECRET=path/to/secret ./run.sh -``` - -## Help - -You can reach us on our Matrix instance: [#codecoverage:mozilla.org](https://chat.mozilla.org/#/room/#codecoverage:mozilla.org) diff --git a/backend/VERSION b/backend/VERSION deleted file mode 100644 index ccad953ac..000000000 --- a/backend/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.1.12 diff --git a/backend/code_coverage_backend/__init__.py b/backend/code_coverage_backend/__init__.py deleted file mode 100644 index 12820f1d4..000000000 --- a/backend/code_coverage_backend/__init__.py +++ /dev/null @@ -1,7 +0,0 @@ -# -*- 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/. -from taskcluster.helper import TaskclusterConfig - -taskcluster = TaskclusterConfig("https://firefox-ci-tc.services.mozilla.com") diff --git a/backend/code_coverage_backend/api.py b/backend/code_coverage_backend/api.py deleted file mode 100644 index cd21c603d..000000000 --- a/backend/code_coverage_backend/api.py +++ /dev/null @@ -1,132 +0,0 @@ -# -*- 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 structlog -from flask import abort - -from code_coverage_backend.gcp import load_cache -from code_coverage_backend.report import DEFAULT_FILTER -from code_coverage_tools import COVERAGE_EXTENSIONS - -DEFAULT_REPOSITORY = "mozilla-central" -logger = structlog.get_logger(__name__) - - -def coverage_supported_extensions(): - """ - List all the file extensions we currently support - """ - return COVERAGE_EXTENSIONS - - -def coverage_latest(repository=DEFAULT_REPOSITORY): - """ - List the last 10 reports available on the server - """ - gcp = load_cache() - if gcp is None: - logger.error("No GCP cache available") - abort(500) - - try: - return [ - {"revision": report.changeset, "push": report.push_id} - for report in gcp.list_reports(repository, nb=10) - ] - except Exception as e: - logger.warn("Failed to retrieve latest reports: {}".format(e)) - abort(404) - - -def coverage_for_path( - path="", - changeset=None, - repository=DEFAULT_REPOSITORY, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, -): - """ - Aggregate coverage for a path, regardless of its type: - * file, gives its coverage percent - * directory, gives coverage percent for its direct sub elements - files and folders (recursive average) - """ - gcp = load_cache() - if gcp is None: - logger.error("No GCP cache available") - abort(500) - - try: - if changeset: - # Find closest report matching this changeset - report = gcp.find_closest_report(repository, changeset, platform, suite) - else: - # Fallback to latest report - report = gcp.find_report(repository, platform, suite) - except Exception as e: - logger.warn("Failed to retrieve report: {}".format(e)) - abort(404) - - # Load tests data from GCP - try: - return gcp.get_coverage(report, path) - except Exception as e: - logger.warn( - "Failed to load coverage", - repo=repository, - changeset=changeset, - path=path, - error=str(e), - ) - abort(400) - - -def coverage_history( - repository=DEFAULT_REPOSITORY, - path="", - start=None, - end=None, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, -): - """ - List overall coverage from ingested reports over a period of time - """ - gcp = load_cache() - if gcp is None: - logger.error("No GCP cache available") - abort(500) - - try: - return gcp.get_history(repository, path, start, end, platform, suite) - except Exception as e: - logger.warn( - "Failed to load history", - repo=repository, - path=path, - start=start, - end=end, - error=str(e), - ) - abort(400) - - -def coverage_filters(repository=DEFAULT_REPOSITORY): - """ - List all available filters for that repository - """ - gcp = load_cache() - if gcp is None: - logger.error("No GCP cache available") - abort(500) - - try: - return { - "platforms": gcp.get_platforms(repository), - "suites": gcp.get_suites(repository), - } - except Exception as e: - logger.warn("Failed to load filters", repo=repository, error=str(e)) - abort(400) diff --git a/backend/code_coverage_backend/api.yml b/backend/code_coverage_backend/api.yml deleted file mode 100644 index 76e12a8bc..000000000 --- a/backend/code_coverage_backend/api.yml +++ /dev/null @@ -1,123 +0,0 @@ ---- -swagger: "2.0" -info: - version: "1.0.0" - title: "Code Coverage" -consumes: - - application/json -produces: - - application/json -paths: - /v2/latest: - get: - operationId: "code_coverage_backend.api.coverage_latest" - parameters: - - name: repository - in: query - description: Mozilla repository for these reports (default to mozilla-central) - required: false - type: string - responses: - 200: - description: Latest coverage builds - tags: - - v2 - - /v2/path: - get: - operationId: "code_coverage_backend.api.coverage_for_path" - parameters: - - name: changeset - in: query - description: Changeset - required: false - type: string - - name: path - in: query - description: File - required: false - type: string - - name: repository - in: query - description: Mozilla repository for this changeset (default to mozilla-central) - required: false - type: string - - name: suite - in: query - description: Filter the coverage using this test suite - required: false - type: string - - name: platform - in: query - description: Filter the coverage using this platform - required: false - type: string - responses: - 200: - description: Code coverage information for a given file or directory at a given changeset - tags: - - v2 - - /v2/history: - get: - operationId: "code_coverage_backend.api.coverage_history" - parameters: - - name: repository - in: query - description: Mozilla repository for these reports (default to mozilla-central) - required: false - type: string - - name: start - in: query - description: Start timestamp for the history date range (default to a year before end) - required: false - type: string - - name: end - in: query - description: End timestamp for the history date range (default to current timestamp) - required: false - type: string - - name: path - in: query - description: Path of the repository folder to get coverage info on. - required: false - type: string - - name: suite - in: query - description: Filter the coverage using this test suite - required: false - type: string - - name: platform - in: query - description: Filter the coverage using this platform - required: false - type: string - responses: - 200: - description: Overall coverage of specified path over a period of time - tags: - - v2 - - /v2/extensions: - get: - operationId: "code_coverage_backend.api.coverage_supported_extensions" - responses: - 200: - description: File extensions supported for code coverage - tags: - - v2 - - /v2/filters: - get: - operationId: "code_coverage_backend.api.coverage_filters" - parameters: - - name: repository - in: query - description: Mozilla repository for these reports (default to mozilla-central) - required: false - type: string - responses: - 200: - description: Available filters on the endpoints - tags: - - v2 diff --git a/backend/code_coverage_backend/backend/__init__.py b/backend/code_coverage_backend/backend/__init__.py deleted file mode 100644 index bc8255d56..000000000 --- a/backend/code_coverage_backend/backend/__init__.py +++ /dev/null @@ -1,62 +0,0 @@ -# -*- 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 os.path - -import structlog -import yaml - -import code_coverage_backend.datadog -import code_coverage_backend.gcp -from code_coverage_backend import taskcluster -from code_coverage_tools.log import init_logger - -from .build import build_flask_app - - -def create_app(): - # Load secrets from Taskcluster - local_secrets_path = os.environ.get("LOCAL_CONFIGURATION") - if local_secrets_path is not None: - assert os.path.exists( - local_secrets_path - ), f"Invalid local secrets path {local_secrets_path}" - taskcluster.auth() - taskcluster.load_secrets( - os.environ.get("TASKCLUSTER_SECRET"), - prefixes=["common", "backend", "code-coverage-backend"], - required=["GOOGLE_CLOUD_STORAGE", "APP_CHANNEL"], - existing={"REDIS_URL": os.environ.get("REDIS_URL", "redis://localhost:6379")}, - local_secrets=yaml.safe_load(open(local_secrets_path)) - if local_secrets_path - else None, - ) - - # Configure logger - init_logger( - "backend", - channel=taskcluster.secrets.get("APP_CHANNEL", "dev"), - PAPERTRAIL_HOST=taskcluster.secrets.get("PAPERTRAIL_HOST"), - PAPERTRAIL_PORT=taskcluster.secrets.get("PAPERTRAIL_PORT"), - sentry_dsn=taskcluster.secrets.get("SENTRY_DSN"), - ) - logger = structlog.get_logger(__name__) - - app = build_flask_app( - project_name=code_coverage_backend.config.PROJECT_NAME, - app_name=code_coverage_backend.config.APP_NAME, - openapi=os.path.join(os.path.dirname(__file__), "../api.yml"), - ) - - # Setup datadog stats - code_coverage_backend.datadog.get_stats() - - # Warm up GCP cache - try: - code_coverage_backend.gcp.load_cache() - except Exception as e: - logger.warn("GCP cache warmup failed: {}".format(e)) - - return app diff --git a/backend/code_coverage_backend/backend/build.py b/backend/code_coverage_backend/backend/build.py deleted file mode 100644 index 898aeb057..000000000 --- a/backend/code_coverage_backend/backend/build.py +++ /dev/null @@ -1,99 +0,0 @@ -# -*- 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/. - -from __future__ import absolute_import - -import os - -import connexion -import flask -import flask_cors -import flask_talisman -import flask_talisman.talisman -import structlog -import werkzeug - -from .dockerflow import get_version -from .dockerflow import heartbeat_response -from .dockerflow import lbheartbeat_response - -logger = structlog.get_logger(__name__) - - -TALISMAN_CONFIG = dict( - # on heroku force https redirect - force_https="DYNO" in os.environ, - force_https_permanent=False, - force_file_save=False, - frame_options=flask_talisman.talisman.SAMEORIGIN, - frame_options_allow_from=None, - strict_transport_security=True, - strict_transport_security_preload=False, - strict_transport_security_max_age=flask_talisman.talisman.ONE_YEAR_IN_SECS, - strict_transport_security_include_subdomains=True, - content_security_policy={ - "default-src": "'none'", - # unsafe-inline is needed for the Swagger UI - "script-src": "'self' 'unsafe-inline'", - "style-src": "'self' 'unsafe-inline'", - "img-src": "'self'", - "connect-src": "'self'", - }, - content_security_policy_report_uri=None, - content_security_policy_report_only=False, - session_cookie_secure=True, - session_cookie_http_only=True, -) - - -def handle_default_exceptions(e): - error = { - "type": "about:blank", - "title": str(e), - "status": getattr(e, "code", 500), - "detail": getattr(e, "description", str(e)), - "instance": "about:blank", - } - return flask.jsonify(error), error["status"] - - -def build_flask_app(project_name, app_name, openapi): - """ - Create a new Flask backend application - app_name is the Python application name, used as Flask import_name - project_name is a "nice" name, used to identify the application - """ - assert os.path.exists(openapi), "Missing openapi file {}".format(openapi) - logger.debug("Initializing", app=app_name, openapi=openapi) - - # Start OpenAPI app - app = connexion.App(import_name=app_name) - app.name = project_name - app.add_api(openapi) - - # Enable security - security = flask_talisman.Talisman() - security.init_app(app.app, **TALISMAN_CONFIG) - - # Enable wildcard CORS - cors = flask_cors.CORS() - cors.init_app(app.app, origins=["*"]) - - # Add exception Json renderer - for code, exception in werkzeug.exceptions.default_exceptions.items(): - app.app.register_error_handler(exception, handle_default_exceptions) - - # Redirect root to API - app.add_url_rule( - "/", "root", lambda: flask.redirect(app.options.openapi_console_ui_path) - ) - - # Dockerflow checks - app.add_url_rule("/__heartbeat__", view_func=heartbeat_response) - app.add_url_rule("/__lbheartbeat__", view_func=lbheartbeat_response) - app.add_url_rule("/__version__", view_func=get_version) - - logger.debug("Initialized", app=app.name) - return app diff --git a/backend/code_coverage_backend/backend/dockerflow.py b/backend/code_coverage_backend/backend/dockerflow.py deleted file mode 100644 index 68402224d..000000000 --- a/backend/code_coverage_backend/backend/dockerflow.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- 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/. - -from __future__ import absolute_import - -import json - -import flask - - -def get_version(): - version_json = { - "source": "https://github.com/mozilla-releng/services", - "version": "unknown", - "commit": "unknown", - "build": "unknown", - } - return flask.jsonify(version_json) - - -def lbheartbeat_response(): - """Per the Dockerflow spec: - Respond to /__lbheartbeat__ with an HTTP 200. This is for load balancer - checks and should not check any dependent services.""" - return flask.Response("OK!", headers={"Cache-Control": "no-cache"}) - - -def heartbeat_response(): - """Per the Dockerflow spec: - Respond to /__heartbeat__ with a HTTP 200 or 5xx on error. This should - depend on services like the database to also ensure they are healthy.""" - response = dict() - - # TODO: check redis is alive - check = True - - if check is True: - return flask.Response("OK", headers={"Cache-Control": "public, max-age=60"}) - else: - return flask.Response( - status=502, - response=json.dumps(response), - headers={ - "Content-Type": "application/json", - "Cache-Control": "public, max-age=60", - }, - ) diff --git a/backend/code_coverage_backend/config.py b/backend/code_coverage_backend/config.py deleted file mode 100644 index ac46c032e..000000000 --- a/backend/code_coverage_backend/config.py +++ /dev/null @@ -1,9 +0,0 @@ -# -*- 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/. - -from __future__ import absolute_import - -PROJECT_NAME = "code-coverage-backend" -APP_NAME = "code_coverage_backend" diff --git a/backend/code_coverage_backend/covdir.py b/backend/code_coverage_backend/covdir.py deleted file mode 100644 index 0308240f3..000000000 --- a/backend/code_coverage_backend/covdir.py +++ /dev/null @@ -1,85 +0,0 @@ -# -*- coding: utf-8 -*- -import json -import os - -import structlog - -logger = structlog.get_logger(__name__) - - -def open_report(report_path): - """ - Helper to load and validate a report - """ - try: - assert os.path.exists(report_path), "Missing file" - - # TODO: move to ijson to reduce loading time - report = json.load(open(report_path)) - assert isinstance(report, dict), "Invalid data structure" - except Exception as e: - logger.warn("Failed to load report", path=report_path, error=str(e)) - if os.path.exists(report_path): - # Remove invalid files - os.unlink(report_path) - return None - - return report - - -def get_path_coverage(report, object_path, max_depth=1): - """ - Recursively format the paths encountered, adding information relative - to file type (file|directory) - """ - assert isinstance(report, dict) - - # Find the section from the path - parts = object_path.split("/") - for part in filter(None, parts): - if part not in report["children"]: - raise Exception("Path {} not found in report".format(object_path)) - report = report["children"][part] - - def _clean_object(obj, base_path, depth=0): - assert isinstance(obj, dict) - if "children" in obj: - # Directory - obj["type"] = "directory" - obj["path"] = base_path - if depth >= max_depth: - obj["children"] = len(obj["children"]) - else: - obj["children"] = [ - _clean_object(child, os.path.join(base_path, child_name), depth + 1) - for child_name, child in obj["children"].items() - ] - else: - # File - obj["type"] = "file" - obj["path"] = base_path - obj["children"] = None - if depth >= max_depth: - del obj["coverage"] - - return obj - - return _clean_object(report, object_path) - - -def get_overall_coverage(report, max_depth=2): - """ - Load a covdir report and recursively extract the overall coverage - of folders until the max depth is reached - """ - assert isinstance(report, dict) - - def _extract(obj, base_path="", depth=0): - if "children" not in obj or depth > max_depth: - return {} - out = {base_path: obj["coveragePercent"]} - for child_name, child in obj["children"].items(): - out.update(_extract(child, os.path.join(base_path, child_name), depth + 1)) - return out - - return _extract(report) diff --git a/backend/code_coverage_backend/datadog.py b/backend/code_coverage_backend/datadog.py deleted file mode 100644 index f63bdfee3..000000000 --- a/backend/code_coverage_backend/datadog.py +++ /dev/null @@ -1,42 +0,0 @@ -# -*- 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 logging - -import datadog - -from code_coverage_backend import config -from code_coverage_backend import taskcluster - -logger = logging.getLogger(__name__) - -__stats = None - - -def get_stats(): - """ - Configure a shared ThreadStats instance for datadog - """ - global __stats - - if __stats is not None: - return __stats - - app_channel = taskcluster.secrets["APP_CHANNEL"] - - if taskcluster.secrets.get("DATADOG_API_KEY"): - datadog.initialize( - api_key=taskcluster.secrets["DATADOG_API_KEY"], - host_name=f"coverage.{app_channel}.moz.tools", - ) - else: - logger.info("No datadog credentials") - - # Must be instantiated after initialize - # https://datadogpy.readthedocs.io/en/latest/#datadog-threadstats-module - __stats = datadog.ThreadStats( - constant_tags=[config.PROJECT_NAME, f"channel:{app_channel}"] - ) - __stats.start(flush_in_thread=True) - return __stats diff --git a/backend/code_coverage_backend/flask.py b/backend/code_coverage_backend/flask.py deleted file mode 100644 index d25f7dc64..000000000 --- a/backend/code_coverage_backend/flask.py +++ /dev/null @@ -1,8 +0,0 @@ -# -*- 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/. -from code_coverage_backend.backend import create_app - -# This is required by release-services deployment -app = create_app() diff --git a/backend/code_coverage_backend/gcp.py b/backend/code_coverage_backend/gcp.py deleted file mode 100644 index c5a070055..000000000 --- a/backend/code_coverage_backend/gcp.py +++ /dev/null @@ -1,404 +0,0 @@ -# -*- coding: utf-8 -*- -import calendar -import math -import os -import re -import tempfile -from datetime import datetime -from datetime import timedelta - -import pytz -import redis -import structlog -import zstandard as zstd -from dateutil.relativedelta import relativedelta - -from code_coverage_backend import covdir -from code_coverage_backend import taskcluster -from code_coverage_backend.hgmo import hgmo_pushes -from code_coverage_backend.hgmo import hgmo_revision_details -from code_coverage_backend.report import DEFAULT_FILTER -from code_coverage_backend.report import Report -from code_coverage_tools.gcp import get_bucket - -logger = structlog.get_logger(__name__) -__cache = None -__hgmo = {} - -KEY_REPORTS = "reports:{repository}:{platform}:{suite}" -KEY_CHANGESET = "changeset:{repository}:{changeset}" -KEY_HISTORY = "history:{repository}" -KEY_PLATFORMS = "platforms:{repository}" -KEY_SUITES = "suites:{repository}" - -REPOSITORIES = ("mozilla-central",) - -MIN_PUSH = 0 -MAX_PUSH = math.inf - - -def load_cache(): - """ - Manage singleton instance of GCPCache when configuration is available - """ - global __cache - - if taskcluster.secrets["GOOGLE_CLOUD_STORAGE"] is None: - return - - if __cache is None: - __cache = GCPCache() - - return __cache - - -class GCPCache(object): - """ - Cache on Redis GCP results - """ - - def __init__(self, reports_dir=None): - # Open redis connection - self.redis = redis.from_url(taskcluster.secrets["REDIS_URL"]) - assert self.redis.ping(), "Redis server does not ping back" - - # Open gcp connection to bucket - assert ( - taskcluster.secrets["GOOGLE_CLOUD_STORAGE"] is not None - ), "Missing GOOGLE_CLOUD_STORAGE secret" - self.bucket = get_bucket(taskcluster.secrets["GOOGLE_CLOUD_STORAGE"]) - - # Local storage for reports - self.reports_dir = reports_dir or os.path.join( - tempfile.gettempdir(), "ccov-reports" - ) - os.makedirs(self.reports_dir, exist_ok=True) - logger.info("Reports will be stored in {}".format(self.reports_dir)) - - # Load most recent reports in cache - for repo in REPOSITORIES: - for report in self.list_reports(repo, nb=1): - self.download_report(report) - - def ingest_pushes(self, repository, platform, suite, min_push_id=None, nb_pages=3): - """ - Ingest HGMO changesets and pushes into our Redis Cache - The pagination goes from oldest to newest, starting from the optional min_push_id - """ - ingested = False - for push_id, push in hgmo_pushes(repository, min_push_id, nb_pages): - for changeset in push["changesets"]: - report = Report( - self.reports_dir, - repository, - changeset, - platform, - suite, - push_id=push_id, - date=push["date"], - ) - - # Always link changeset to push to find closest available report - self.redis.hmset( - KEY_CHANGESET.format( - repository=report.repository, changeset=report.changeset - ), - {"push": report.push_id, "date": report.date}, - ) - - if not ingested and self.ingest_report(report): - logger.info( - "Found report in that push", push_id=push_id, report=str(report) - ) - - # Only ingest first report found in a push in order to stay below 30s response time - ingested = True - - def ingest_report(self, report): - """ - When a report exist for a changeset, download it and update redis data - """ - assert isinstance(report, Report) - - # Download the report - if not self.download_report(report): - logger.info("Report not available", report=str(report)) - return False - - # Read overall coverage for history - data = covdir.open_report(report.path) - assert data is not None, "No report to ingest" - overall_coverage = covdir.get_overall_coverage(data) - assert len(overall_coverage) > 0, "No overall coverage" - self.redis.hmset(report.key_overall, overall_coverage) - - # Apply expiry for overall report - if report.ttl is not None: - self.redis.expire(report.key_overall, report.ttl) - - # Add the changeset to the sorted sets of known reports - # The numeric push_id is used as a score to keep the ingested - # changesets ordered - self.redis.zadd( - KEY_REPORTS.format( - repository=report.repository, - platform=report.platform, - suite=report.suite, - ), - {report.changeset: report.push_id}, - ) - - # Add the changeset to the sorted sets of known reports by date - self.redis.zadd( - KEY_HISTORY.format(repository=report.repository), - {report.changeset: report.date}, - ) - - # Store the filters - if report.platform != DEFAULT_FILTER: - self.redis.sadd( - KEY_PLATFORMS.format(repository=report.repository), report.platform - ) - if report.suite != DEFAULT_FILTER: - self.redis.sadd( - KEY_SUITES.format(repository=report.repository), report.suite - ) - - logger.info("Ingested report", report=str(report)) - return True - - def download_report(self, report): - """ - Download and extract a json+zstd covdir report - """ - assert isinstance(report, Report) - - # Check the report is available on remote storage - blob = self.bucket.blob(report.gcp_path) - if not blob.exists(): - logger.debug("No report found on GCP", path=report.gcp_path) - return False - - if os.path.exists(report.path): - logger.info("Report already available", path=report.path) - return True - - os.makedirs(os.path.dirname(report.archive_path), exist_ok=True) - blob.download_to_filename(report.archive_path) - logger.info("Downloaded report archive", path=report.archive_path) - - with open(report.path, "wb") as output: - with open(report.archive_path, "rb") as archive: - dctx = zstd.ZstdDecompressor() - reader = dctx.stream_reader(archive) - while True: - chunk = reader.read(16384) - if not chunk: - break - output.write(chunk) - - os.unlink(report.archive_path) - logger.info("Decompressed report", path=report.path) - return True - - def find_report( - self, - repository, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, - push_range=(MAX_PUSH, MIN_PUSH), - ): - """ - Find the first report available before that push - """ - results = self.list_reports( - repository, platform, suite, nb=1, push_range=push_range - ) - if not results: - raise Exception("No report found") - return results[0] - - def find_closest_report( - self, repository, changeset, platform=DEFAULT_FILTER, suite=DEFAULT_FILTER - ): - """ - Find the closest report from specified changeset: - 1. Lookup the changeset push in cache - 2. Lookup the changeset push in HGMO - 3. Find the first report after that push - """ - - # Lookup push from cache (fast) - key = KEY_CHANGESET.format(repository=repository, changeset=changeset) - push_id = self.redis.hget(key, "push") - if push_id: - # Redis lib uses bytes for all output - push_id = int(push_id.decode("utf-8")) - date = self.redis.hget(key, "date").decode("utf-8") - - # Check the report variant is available locally - report = Report( - self.reports_dir, - repository, - changeset, - platform, - suite, - push_id=push_id, - date=date, - ) - if not os.path.exists(report.path): - self.ingest_report(report) - else: - - # Lookup push from HGMO (slow) - push_id, _ = hgmo_revision_details(repository, changeset) - - # Ingest pushes as we clearly don't have it in cache - self.ingest_pushes( - repository, platform, suite, min_push_id=push_id - 1, nb_pages=1 - ) - - # Load report from that push - return self.find_report( - repository, platform, suite, push_range=(push_id, MAX_PUSH) - ) - - def list_reports( - self, - repository, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, - nb=5, - push_range=(MAX_PUSH, MIN_PUSH), - ): - """ - List the last reports available on the server, ordered by push - by default from newer to older - The order is detected from the push range - """ - assert isinstance(nb, int) - assert nb > 0 - assert isinstance(push_range, tuple) and len(push_range) == 2 - - # Detect ordering from push range - start, end = push_range - op = self.redis.zrangebyscore if start < end else self.redis.zrevrangebyscore - - reports = op( - KEY_REPORTS.format(repository=repository, platform=platform, suite=suite), - start, - end, - start=0, - num=nb, - withscores=True, - ) - - return [ - Report( - self.reports_dir, - repository, - changeset.decode("utf-8"), - platform, - suite, - push_id=push, - ) - for changeset, push in reports - ] - - def get_coverage(self, report, path): - """ - Load a report and its coverage for a specific path - and build a serializable representation - """ - assert isinstance(report, Report) - data = covdir.open_report(report.path) - if data is None: - # Try to download the report if it's missing locally - assert self.download_report(report), "Missing report {}".format(report) - - data = covdir.open_report(report.path) - assert data - - out = covdir.get_path_coverage(data, path) - out["changeset"] = report.changeset - return out - - def get_history( - self, - repository, - path="", - start=None, - end=None, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, - ): - """ - Load the history overall coverage from the redis cache - Default to date range from now back to a year - """ - if end is None: - end = calendar.timegm(datetime.utcnow().timetuple()) - if start is None: - start = datetime.fromtimestamp(end) - relativedelta(years=1) - start = int(datetime.timestamp(start)) - assert isinstance(start, int) - assert isinstance(end, int) - assert end > start - - # Load changesets ordered by date, in that range - history = self.redis.zrevrangebyscore( - KEY_HISTORY.format(repository=repository), end, start, withscores=True - ) - - def _coverage(changeset, date): - # Load overall coverage for specified path - changeset = changeset.decode("utf-8") - - report = Report( - self.reports_dir, repository, changeset, platform, suite, date=date - ) - coverage = self.redis.hget(report.key_overall, path) - if coverage is not None: - coverage = float(coverage) - return {"changeset": changeset, "date": int(date), "coverage": coverage} - - return [_coverage(changeset, date) for changeset, date in history] - - def get_platforms(self, repository): - """List all available platforms for a repository""" - platforms = self.redis.smembers(KEY_PLATFORMS.format(repository=repository)) - return sorted(map(lambda x: x.decode("utf-8"), platforms)) - - def get_suites(self, repository): - """List all available suites for a repository""" - suites = self.redis.smembers(KEY_SUITES.format(repository=repository)) - return sorted(map(lambda x: x.decode("utf-8"), suites)) - - def ingest_available_reports(self, repository, until=None): - """ - Ingest all the available reports for a repository - """ - assert isinstance(repository, str) - - REGEX_BLOB = re.compile( - r"^{}/(\w+)/([\w\-]+):([\w\-]+).json.zstd$".format(repository) - ) - now = datetime.utcnow().replace(tzinfo=pytz.UTC) - for blob in self.bucket.list_blobs(prefix=repository): - - if isinstance(until, timedelta) and (now - blob.time_created) >= until: - logger.debug(f"Skipping old blob {blob}") - continue - - # Get changeset from blob name - match = REGEX_BLOB.match(blob.name) - if match is None: - logger.warn("Invalid blob found {}".format(blob.name)) - continue - changeset = match.group(1) - platform = match.group(2) - suite = match.group(3) - - # Build report instance and ingest it - report = Report(self.reports_dir, repository, changeset, platform, suite) - self.ingest_report(report) diff --git a/backend/code_coverage_backend/hgmo.py b/backend/code_coverage_backend/hgmo.py deleted file mode 100644 index de9d4fcee..000000000 --- a/backend/code_coverage_backend/hgmo.py +++ /dev/null @@ -1,65 +0,0 @@ -# -*- 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 requests -import structlog - -logger = structlog.get_logger(__name__) - -__hgmo = {} - -HGMO_REVISION_URL = "https://hg.mozilla.org/{repository}/json-rev/{revision}" -HGMO_PUSHES_URL = "https://hg.mozilla.org/{repository}/json-pushes" - - -def hgmo_revision_details(repository, changeset): - """ - HGMO helper to retrieve details for a changeset - """ - # Check cache first - key = (repository, changeset) - if key in __hgmo: - return __hgmo[key] - - url = HGMO_REVISION_URL.format(repository=repository, revision=changeset) - resp = requests.get(url) - resp.raise_for_status() - data = resp.json() - assert "pushid" in data, "Missing pushid" - out = data["pushid"], data["date"][0] - - # Store in cache - __hgmo[key] = out - return out - - -def hgmo_pushes(repository, min_push_id, nb_pages, chunk_size=8): - """ - HGMO helper to list all pushes in a limited number of pages - """ - params = {"version": 2} - if min_push_id is not None: - assert isinstance(min_push_id, int) - params["startID"] = min_push_id - params["endID"] = min_push_id + chunk_size - - for page in range(nb_pages): - r = requests.get(HGMO_PUSHES_URL.format(repository=repository), params=params) - data = r.json() - - # Sort pushes to go from oldest to newest - pushes = sorted( - [(int(push_id), push) for push_id, push in data["pushes"].items()], - key=lambda p: p[0], - ) - if not pushes: - return - - for push in pushes: - yield push - - newest = pushes[-1][0] - params["startID"] = newest - params["endID"] = newest + chunk_size diff --git a/backend/code_coverage_backend/report.py b/backend/code_coverage_backend/report.py deleted file mode 100644 index d2efa4a89..000000000 --- a/backend/code_coverage_backend/report.py +++ /dev/null @@ -1,108 +0,0 @@ -# -*- 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 os - -import structlog - -from code_coverage_backend.hgmo import hgmo_revision_details - -logger = structlog.get_logger(__name__) - -DEFAULT_FILTER = "all" - - -class Report(object): - """ - A single coverage report - """ - - def __init__( - self, - base_dir, - repository, - changeset, - platform=DEFAULT_FILTER, - suite=DEFAULT_FILTER, - push_id=None, - date=None, - ): - assert isinstance(repository, str) - assert isinstance(changeset, str) - self.base_dir = base_dir - self.repository = repository - self.changeset = changeset - self.platform = platform - self.suite = suite - - # Get extra information from HGMO - if push_id or date: - self.push_id = push_id - self.date = date - else: - self.push_id, date = hgmo_revision_details(repository, changeset) - self.date = int(date) - - def __str__(self): - return self.name - - def __repr__(self): - return self.name - - def __eq__(self, other): - - return isinstance(other, Report) and ( - self.base_dir, - self.repository, - self.changeset, - self.platform, - self.suite, - ) == ( - other.base_dir, - other.repository, - other.changeset, - other.platform, - other.suite, - ) - - @property - def name(self): - return "{}/{}/{}:{}".format( - self.repository, self.changeset, self.platform, self.suite - ) - - @property - def path(self): - """Local path on FS, decompressed""" - return os.path.join(self.base_dir, f"{self.name}.json") - - @property - def archive_path(self): - """Local path on FS, compressed""" - return f"{self.path}.zstd" - - @property - def gcp_path(self): - """Remote path on GCP storage""" - return f"{self.name}.json.zstd" - - @property - def key_overall(self): - """Redis key to store the overall coverage data for this report""" - platform = self.platform or "all" - suite = self.suite or "all" - return f"overall:{self.repository}:{self.changeset}:{platform}:{suite}" - - @property - def ttl(self): - """Time to live in seconds for the full report - - Will be None (no expiry) for full report (all:all) - Otherwise set to 2 weeks - """ - if self.suite == DEFAULT_FILTER and self.platform == DEFAULT_FILTER: - return - - return 15 * 24 * 3600 diff --git a/backend/requirements-dev.txt b/backend/requirements-dev.txt deleted file mode 100644 index 147c182d8..000000000 --- a/backend/requirements-dev.txt +++ /dev/null @@ -1,5 +0,0 @@ -fakeredis==1.4.1 -pre-commit==2.6.0 -pytest==5.4.3 -pytest-responses==0.4.0 -responses==0.10.15 diff --git a/backend/requirements.txt b/backend/requirements.txt deleted file mode 100644 index b2217175d..000000000 --- a/backend/requirements.txt +++ /dev/null @@ -1,14 +0,0 @@ --e ../tools #egg=code-coverage-tools -connexion==2.7.0 -datadog==0.38.0 -fakeredis==1.4.1 -Flask==1.1.2 -Flask-Cors==3.0.8 -flask-talisman==0.7.0 -google-cloud-storage==1.29.0 -gunicorn==20.0.4 -python-dateutil==2.8.1 -pytoml==0.1.21 -redis==3.5.3 -swagger-ui-bundle==0.0.6 -zstandard==0.14.0 diff --git a/backend/run.sh b/backend/run.sh deleted file mode 100755 index e78089123..000000000 --- a/backend/run.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -if [[ ! $TASKCLUSTER_SECRET ]]; then - export TASKCLUSTER_SECRET="project/relman/code-coverage/dev" - echo 'Using dev secret' -fi -gunicorn --bind localhost:8000 --reload --reload-engine=poll --log-file=- code_coverage_backend.flask:app diff --git a/backend/settings.py b/backend/settings.py deleted file mode 100644 index 52f894031..000000000 --- a/backend/settings.py +++ /dev/null @@ -1,8 +0,0 @@ -# -*- 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 os - -DEBUG = bool(os.environ.get("DEBUG", False)) diff --git a/backend/setup.py b/backend/setup.py deleted file mode 100644 index 5fc57b44a..000000000 --- a/backend/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- 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/. - -from __future__ import absolute_import - -from setuptools import find_packages -from setuptools import setup - -with open("VERSION") as f: - version = f.read().strip() - - -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))) - - -setup( - name="code_coverage_backend", - version=version, - description="The code behind https://coverage.moz.tools", - author="Mozilla Release Management", - author_email="release-mgmt-analysis@mozilla.com", - url="https://api.coverage.moz.tools", - tests_require=read_requirements("requirements-dev.txt"), - install_requires=read_requirements("requirements.txt"), - packages=find_packages(), - include_package_data=True, - zip_safe=False, - license="MPL2", -) diff --git a/backend/tests/__init__.py b/backend/tests/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/backend/tests/conftest.py b/backend/tests/conftest.py deleted file mode 100644 index 4d3e8f7a8..000000000 --- a/backend/tests/conftest.py +++ /dev/null @@ -1,204 +0,0 @@ -# -*- 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 hashlib -import json -import os -import random -import re -import time -import urllib.parse -import uuid - -import fakeredis -import pytest -import responses -import zstandard as zstd - -import code_coverage_backend.backend -import code_coverage_backend.gcp - -FIXTURES_DIR = os.path.join(os.path.dirname(__file__), "fixtures") - - -@pytest.fixture(autouse=True, scope="function") -def mock_secrets(): - """ - Provide configuration through mock Taskcluster secrets - """ - from code_coverage_backend import taskcluster - - taskcluster.options = {"rootUrl": "http://taskcluster.test"} - taskcluster.secrets = { - "REDIS_URL": "redis://unitest:1234", - "APP_CHANNEL": "test", - "GOOGLE_CLOUD_STORAGE": { - "token_uri": "secret", - "client_email": "xxx@mozilla.test", - "private_key": "somethingHere", - "bucket": "unittest", - }, - } - - -@pytest.fixture -def app(mock_secrets): - """ - Load code_coverage_backend app in test mode - """ - - app = code_coverage_backend.backend.build_flask_app( - project_name="Test", - app_name="test", - openapi=os.path.join( - os.path.dirname(__file__), "../code_coverage_backend/api.yml" - ), - ) - - with app.app.app_context(): - yield app.app - - -@pytest.fixture -def client(app): - yield app.test_client() - - -@pytest.fixture -def mock_bucket(mock_secrets): - """ - Mock a GCP bucket & blobs - """ - - class MockBlob(object): - def __init__(self, name, content=None, exists=False): - self.name = name - if content is not None: - assert isinstance(content, bytes) - - # Auto zstandard compression - if self.name.endswith(".zstd"): - compressor = zstd.ZstdCompressor() - self._content = compressor.compress(content) - else: - self._content = content - else: - self._content = None - self._exists = exists - - def exists(self): - return self._exists - - def download_to_filename(self, path): - assert self._exists and self._content - with open(path, "wb") as f: - f.write(self._content) - - class MockBucket(object): - _blobs = {} - - def add_mock_blob(self, name, coverage=0.0): - content = json.dumps({"coveragePercent": coverage, "children": {}}).encode( - "utf-8" - ) - self._blobs[name] = MockBlob(name, content, exists=True) - - def blob(self, name): - if name in self._blobs: - return self._blobs[name] - return MockBlob(name) - - return MockBucket() - - -@pytest.fixture -def mock_cache(mock_secrets, mock_bucket, tmpdir, monkeypatch): - """ - Mock a GCPCache instance, using fakeredis and a mocked GCP bucket - """ - from code_coverage_backend.gcp import GCPCache - - class MockCache(GCPCache): - def __init__(self): - self.redis = fakeredis.FakeStrictRedis() - self.reports_dir = tmpdir.mkdtemp() - self.bucket = mock_bucket - - cache = MockCache() - - # Set global cache too - monkeypatch.setattr(code_coverage_backend.gcp, "__cache", cache) - - return cache - - -@pytest.fixture -def mock_hgmo(): - """ - Mock HGMO responses for pushes - """ - headers = {"content-type": "application/json"} - max_push = 1000 - - def _test_rev(request): - # The push id is in the first 3 characters of the revision requested - revision = request.path_url[17:] - assert len(revision) == 32 - resp = {"pushid": int(revision[:3]), "date": [time.time(), 0]} - return (200, headers, json.dumps(resp)) - - def _changesets(push_id): - - # random changesets - changesets = [uuid.uuid4().hex for _ in range(random.randint(2, 20))] - - # Add the MD5 hash of the push id to test specific cases - changesets.append(hashlib.md5(str(push_id).encode("utf-8")).hexdigest()) - - return changesets - - def _test_pushes(request): - """ - Build pushes list, limited to a maximum push id - """ - query = urllib.parse.parse_qs(urllib.parse.urlparse(request.path_url).query) - assert int(query["version"][0]) == 2 - start = "startID" in query and int(query["startID"][0]) or (max_push - 8) - end = "endID" in query and int(query["endID"][0]) or max_push - assert end > start - now = time.time() - resp = { - "lastpushid": max_push, - "pushes": { - push: { - "changesets": _changesets(push), - "date": int((now % 1000000) + push * 10), # fake timestamp - } - for push in range(start, end + 1) - if push <= max_push - }, - } - return (200, headers, json.dumps(resp)) - - with responses.RequestsMock(assert_all_requests_are_fired=False) as resps: - resps.add_callback( - responses.GET, - re.compile("https://hg.mozilla.org/(.+)/json-rev/(.+)"), - callback=_test_rev, - ) - resps.add_callback( - responses.GET, - re.compile("https://hg.mozilla.org/(.+)/json-pushes"), - callback=_test_pushes, - ) - yield resps - - -@pytest.fixture -def mock_covdir_report(): - """ - Path to the covdir mock in repository - """ - return os.path.join(FIXTURES_DIR, "covdir.json") diff --git a/backend/tests/fixtures/covdir.json b/backend/tests/fixtures/covdir.json deleted file mode 100644 index 018b4e7c4..000000000 --- a/backend/tests/fixtures/covdir.json +++ /dev/null @@ -1,972 +0,0 @@ -{ - "children": { - "builtin": { - "children": { - "Array.cpp": { - "coverage": [ - -1, - -1, - 4072196, - 94, - -1, - -1 - ], - "coveragePercent": 89.84, - "linesCovered": 2086, - "linesMissed": 236, - "linesTotal": 2322, - "name": "Array.cpp" - }, - "BigInt.cpp": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - 326, - 32, - 155 - ], - "coveragePercent": 95.5, - "linesCovered": 106, - "linesMissed": 5, - "linesTotal": 111, - "name": "BigInt.cpp" - }, - "DataViewObject.h": { - "coverage": [ - -1, - -1, - -1, - 167, - -1, - -1, - -1, - 48, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 12, - "linesMissed": 0, - "linesTotal": 12, - "name": "DataViewObject.h" - }, - "MapObject.cpp": { - "coverage": [ - -1, - 129903185, - -1, - 45228051, - 145560253 - ], - "coveragePercent": 89.9, - "linesCovered": 881, - "linesMissed": 99, - "linesTotal": 980, - "name": "MapObject.cpp" - }, - "Object.cpp": { - "coverage": [ - 1048685, - 0, - 5885, - -1, - 4321292, - 322, - 27502240 - ], - "coveragePercent": 91.37, - "linesCovered": 974, - "linesMissed": 92, - "linesTotal": 1066, - "name": "Object.cpp" - }, - "String.cpp": { - "coverage": [ - 0, - -1, - -1, - -1, - -1, - -1, - 1542, - -1 - ], - "coveragePercent": 91.07, - "linesCovered": 1917, - "linesMissed": 188, - "linesTotal": 2105, - "name": "String.cpp" - }, - "Symbol.h": { - "coverage": [ - -1, - 8203, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 5, - "linesMissed": 0, - "linesTotal": 5, - "name": "Symbol.h" - }, - "TypedObject.cpp": { - "coverage": [ - -1, - -1, - 5, - 2847, - -1, - 85708, - 1725739 - ], - "coveragePercent": 84.82, - "linesCovered": 1179, - "linesMissed": 211, - "linesTotal": 1390, - "name": "TypedObject.cpp" - }, - "TypedObject.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 95.61, - "linesCovered": 109, - "linesMissed": 5, - "linesTotal": 114, - "name": "TypedObject.h" - }, - "WeakMapObject-inl.h": { - "coverage": [ - 14300000, - 7150000, - 15169218, - 854201, - -1, - -1, - -1, - 7150000, - 11159609 - ], - "coveragePercent": 80.0, - "linesCovered": 24, - "linesMissed": 6, - "linesTotal": 30, - "name": "WeakMapObject-inl.h" - }, - "WeakSetObject.cpp": { - "coverage": [ - 64, - -1, - -1, - 160983, - -1, - 214, - 316665, - 214, - -1, - 393888 - ], - "coveragePercent": 94.69, - "linesCovered": 107, - "linesMissed": 6, - "linesTotal": 113, - "name": "WeakSetObject.cpp" - }, - "intl": { - "children": { - "Collator.cpp": { - "coverage": [ - -1, - -1, - -1, - 1298337, - -1, - 10035, - -1 - ], - "coveragePercent": 79.18, - "linesCovered": 213, - "linesMissed": 56, - "linesTotal": 269, - "name": "Collator.cpp" - }, - "CommonFunctions.h": { - "coverage": [ - -1, - -1, - 987, - -1, - 9509622, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 84.38, - "linesCovered": 27, - "linesMissed": 5, - "linesTotal": 32, - "name": "CommonFunctions.h" - }, - "ScopedICUObject.h": { - "coverage": [ - -1, - 871376, - -1, - -1, - -1, - 5978, - 412412, - -1, - 412412, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 10, - "linesMissed": 0, - "linesTotal": 10, - "name": "ScopedICUObject.h" - } - }, - "coveragePercent": 78.62, - "linesCovered": 1758, - "linesMissed": 478, - "linesTotal": 2236, - "name": "intl" - } - }, - "coveragePercent": 84.4, - "linesCovered": 21145, - "linesMissed": 3909, - "linesTotal": 25054, - "name": "builtin" - }, - "ctypes": { - "children": { - "CTypes.h": { - "coverage": [ - -1, - 221667, - -1, - 89143751, - -1, - -1, - 414 - ], - "coveragePercent": 83.7, - "linesCovered": 113, - "linesMissed": 22, - "linesTotal": 135, - "name": "CTypes.h" - }, - "libffi": { - "children": {}, - "coveragePercent": 49.59, - "linesCovered": 540, - "linesMissed": 549, - "linesTotal": 1089, - "name": "libffi" - } - }, - "coveragePercent": 80.83, - "linesCovered": 4723, - "linesMissed": 1120, - "linesTotal": 5843, - "name": "ctypes" - }, - "frontend": { - "children": { - "BinASTParser.h": { - "coverage": [ - -1, - -1, - -1, - 16, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 3, - "linesMissed": 0, - "linesTotal": 3, - "name": "BinASTParser.h" - }, - "BinASTParserBase.cpp": { - "coverage": [ - -1, - 16, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 3, - "linesMissed": 0, - "linesTotal": 3, - "name": "BinASTParserBase.cpp" - }, - "BinASTParserPerTokenizer.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 46.0, - "linesCovered": 23, - "linesMissed": 27, - "linesTotal": 50, - "name": "BinASTParserPerTokenizer.h" - }, - "BinASTTokenReaderBase.h": { - "coverage": [ - -1, - -1, - -1, - 112, - -1, - -1 - ], - "coveragePercent": 82.05, - "linesCovered": 32, - "linesMissed": 7, - "linesTotal": 39, - "name": "BinASTTokenReaderBase.h" - }, - "BinASTTokenReaderContext.cpp": { - "coverage": [ - 0, - -1, - 0, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 0.0, - "linesCovered": 0, - "linesMissed": 88, - "linesTotal": 88, - "name": "BinASTTokenReaderContext.cpp" - }, - "BinASTTokenReaderMultipart.cpp": { - "coverage": [ - 6130, - -1, - 10, - -1, - -1, - 90, - 0, - 16 - ], - "coveragePercent": 69.46, - "linesCovered": 166, - "linesMissed": 73, - "linesTotal": 239, - "name": "BinASTTokenReaderMultipart.cpp" - }, - "BytecodeCompilation.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 29, - "linesMissed": 0, - "linesTotal": 29, - "name": "BytecodeCompilation.h" - }, - "BytecodeCompiler.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 1, - "linesMissed": 0, - "linesTotal": 1, - "name": "BytecodeCompiler.h" - }, - "BytecodeEmitter.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - 4153558976, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 81, - "linesMissed": 0, - "linesTotal": 81, - "name": "BytecodeEmitter.h" - }, - "CForEmitter.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 1, - "linesMissed": 0, - "linesTotal": 1, - "name": "CForEmitter.h" - }, - "DefaultEmitter.h": { - "coverage": [ - -1, - 30240237, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 1, - "linesMissed": 0, - "linesTotal": 1, - "name": "DefaultEmitter.h" - }, - "ForOfEmitter.cpp": { - "coverage": [ - -1, - -1, - 0, - -1, - -1, - -1 - ], - "coveragePercent": 70.19, - "linesCovered": 73, - "linesMissed": 31, - "linesTotal": 104, - "name": "ForOfEmitter.cpp" - }, - "ForOfEmitter.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 1, - "linesMissed": 0, - "linesTotal": 1, - "name": "ForOfEmitter.h" - }, - "FullParseHandler.h": { - "coverage": [ - -1, - 4041040, - 330917233, - 248049, - 1572, - 21814237, - 1442811438, - 482, - -1 - ], - "coveragePercent": 96.52, - "linesCovered": 554, - "linesMissed": 20, - "linesTotal": 574, - "name": "FullParseHandler.h" - }, - "IfEmitter.cpp": { - "coverage": [ - 164940229, - 9100611, - 422680206, - 56589688, - 422680203, - 164940105, - -1, - -1, - -1 - ], - "coveragePercent": 88.65, - "linesCovered": 125, - "linesMissed": 16, - "linesTotal": 141, - "name": "IfEmitter.cpp" - }, - "LabelEmitter.cpp": { - "coverage": [ - -1, - -1, - 899203, - 442788, - -1, - -1 - ], - "coveragePercent": 91.3, - "linesCovered": 21, - "linesMissed": 2, - "linesTotal": 23, - "name": "LabelEmitter.cpp" - }, - "LexicalScopeEmitter.cpp": { - "coverage": [ - -1, - -1, - 664992660, - 1217300415, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 27, - "linesMissed": 0, - "linesTotal": 27, - "name": "LexicalScopeEmitter.cpp" - }, - "LexicalScopeEmitter.h": { - "coverage": [ - -1, - -1, - 25276761, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 2, - "linesMissed": 0, - "linesTotal": 2, - "name": "LexicalScopeEmitter.h" - }, - "NameAnalysisTypes.h": { - "coverage": [ - 6312861, - 0, - 67773, - 1253119912, - -1, - -1 - ], - "coveragePercent": 97.94, - "linesCovered": 95, - "linesMissed": 2, - "linesTotal": 97, - "name": "NameAnalysisTypes.h" - }, - "NameCollections.h": { - "coverage": [ - 2175767810, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 98.97, - "linesCovered": 96, - "linesMissed": 1, - "linesTotal": 97, - "name": "NameCollections.h" - }, - "ObjectEmitter.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 2, - "linesMissed": 0, - "linesTotal": 2, - "name": "ObjectEmitter.h" - }, - "PropOpEmitter.cpp": { - "coverage": [ - 0, - 2129160, - 6, - 1287200406, - 210422485, - 208605171, - 107032632, - 2401685, - 2401685 - ], - "coveragePercent": 85.61, - "linesCovered": 113, - "linesMissed": 19, - "linesTotal": 132, - "name": "PropOpEmitter.cpp" - }, - "SharedContext.h": { - "coverage": [ - 1351119109, - -1, - -1, - -1, - 776912344, - -1, - -1, - -1, - 18830678 - ], - "coveragePercent": 99.39, - "linesCovered": 164, - "linesMissed": 1, - "linesTotal": 165, - "name": "SharedContext.h" - } - }, - "coveragePercent": 78.51, - "linesCovered": 18874, - "linesMissed": 5167, - "linesTotal": 24041, - "name": "frontend" - }, - "jsapi.cpp": { - "coverage": [ - 2381275, - 6326357, - 332759, - -1, - 0, - 304222689, - 534151, - 0, - -1, - -1 - ], - "coveragePercent": 83.56, - "linesCovered": 2897, - "linesMissed": 570, - "linesTotal": 3467, - "name": "jsapi.cpp" - }, - "jsdate.cpp": { - "coverage": [ - 54, - 189361, - 54717, - 216, - -1, - 134, - -1, - 555, - -1, - -1 - ], - "coveragePercent": 94.43, - "linesCovered": 1476, - "linesMissed": 87, - "linesTotal": 1563, - "name": "jsdate.cpp" - }, - "jsexn.cpp": { - "coverage": [ - -1, - -1, - 66, - 185233, - -1 - ], - "coveragePercent": 90.48, - "linesCovered": 513, - "linesMissed": 54, - "linesTotal": 567, - "name": "jsexn.cpp" - }, - "jsexn.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 14, - "linesMissed": 0, - "linesTotal": 14, - "name": "jsexn.h" - }, - "jsmath.cpp": { - "coverage": [ - -1, - 196929012, - -1, - -1, - 457205 - ], - "coveragePercent": 93.54, - "linesCovered": 521, - "linesMissed": 36, - "linesTotal": 557, - "name": "jsmath.cpp" - }, - "perf": { - "children": { - "pm_linux.cpp": { - "coverage": [ - 66, - 138, - 6, - -1, - -1 - ], - "coveragePercent": 81.69, - "linesCovered": 58, - "linesMissed": 13, - "linesTotal": 71, - "name": "pm_linux.cpp" - }, - "pm_stub.cpp": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - 0, - 6, - 0, - 6, - -1 - ], - "coveragePercent": 15.79, - "linesCovered": 3, - "linesMissed": 16, - "linesTotal": 19, - "name": "pm_stub.cpp" - } - }, - "coveragePercent": 65.45, - "linesCovered": 125, - "linesMissed": 66, - "linesTotal": 191, - "name": "perf" - }, - "shell": { - "children": { - "OSObject.cpp": { - "coverage": [ - -1, - -1, - -1, - -1, - 0, - 15 - ], - "coveragePercent": 45.67, - "linesCovered": 232, - "linesMissed": 276, - "linesTotal": 508, - "name": "OSObject.cpp" - }, - "jsoptparse.cpp": { - "coverage": [ - 0, - -1, - -1, - 318866, - 0, - -1 - ], - "coveragePercent": 53.55, - "linesCovered": 196, - "linesMissed": 170, - "linesTotal": 366, - "name": "jsoptparse.cpp" - } - }, - "coveragePercent": 69.95, - "linesCovered": 4859, - "linesMissed": 2087, - "linesTotal": 6946, - "name": "shell" - }, - "threading": { - "children": { - "ExclusiveData.h": { - "coverage": [ - -1, - -1, - -1, - -1, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 44, - "linesMissed": 0, - "linesTotal": 44, - "name": "ExclusiveData.h" - }, - "Mutex.h": { - "coverage": [ - -1, - -1, - -1, - -1, - 14039876, - -1, - -1, - 14039850, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 6, - "linesMissed": 0, - "linesTotal": 6, - "name": "Mutex.h" - }, - "ProtectedData.cpp": { - "coverage": [ - -1, - -1, - 373463444, - 4535294225388, - 491143401, - -1, - -1 - ], - "coveragePercent": 100.0, - "linesCovered": 41, - "linesMissed": 0, - "linesTotal": 41, - "name": "ProtectedData.cpp" - } - }, - "coveragePercent": 90.54, - "linesCovered": 383, - "linesMissed": 40, - "linesTotal": 423, - "name": "threading" - }, - "util": { - "children": { - "CompleteFile.cpp": { - "coverage": [ - -1, - -1, - -1, - 40, - -1, - -1 - ], - "coveragePercent": 82.14, - "linesCovered": 23, - "linesMissed": 5, - "linesTotal": 28, - "name": "CompleteFile.cpp" - }, - "DoubleToString.cpp": { - "coverage": [ - 16008659, - -1, - 16008659, - -1, - 270328, - 1521433, - 1013364, - 19741, - -1 - ], - "coveragePercent": 90.5, - "linesCovered": 219, - "linesMissed": 23, - "linesTotal": 242, - "name": "DoubleToString.cpp" - }, - "Unicode.cpp": { - "coverage": [ - 0, - 0, - 0, - -1, - -1, - -1, - 0, - -1, - -1, - -1 - ], - "coveragePercent": 65.77, - "linesCovered": 980, - "linesMissed": 510, - "linesTotal": 1490, - "name": "Unicode.cpp" - } - }, - "coveragePercent": 73.29, - "linesCovered": 1937, - "linesMissed": 706, - "linesTotal": 2643, - "name": "util" - } - }, - "coveragePercent": 85.11, - "linesCovered": 267432, - "linesMissed": 46779, - "linesTotal": 314211, - "name": "src" -} \ No newline at end of file diff --git a/backend/tests/test_api.py b/backend/tests/test_api.py deleted file mode 100644 index 01ec02724..000000000 --- a/backend/tests/test_api.py +++ /dev/null @@ -1,52 +0,0 @@ -# -*- 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/. - -from code_coverage_backend.api import coverage_latest -from code_coverage_backend.report import Report - - -def test_latest(mock_cache): - """ - Test the /v2/latest function - """ - - # Empty at first - assert coverage_latest() == [] - - # Add some reports on mozilla-central - for rev in range(30): - mock_cache.bucket.add_mock_blob( - f"mozilla-central/rev{rev}/all:all.json.zstd", coverage=rev / 100.0 - ) - report = Report( - mock_cache.reports_dir, - "mozilla-central", - f"rev{rev}", - date=1000 + rev, - push_id=rev * 5, - ) - mock_cache.ingest_report(report) - - # And one on another repo - mock_cache.bucket.add_mock_blob("myrepo/deadbeef/all:all.json.zstd", coverage=1) - report = Report(mock_cache.reports_dir, "myrepo", "deadbeef", date=1000, push_id=2) - mock_cache.ingest_report(report) - - # Check endpoint lists last 10 revisions - assert coverage_latest() == [ - {"push": 145, "revision": "rev29"}, - {"push": 140, "revision": "rev28"}, - {"push": 135, "revision": "rev27"}, - {"push": 130, "revision": "rev26"}, - {"push": 125, "revision": "rev25"}, - {"push": 120, "revision": "rev24"}, - {"push": 115, "revision": "rev23"}, - {"push": 110, "revision": "rev22"}, - {"push": 105, "revision": "rev21"}, - {"push": 100, "revision": "rev20"}, - ] - - # Another repository does not - assert coverage_latest("myrepo") == [{"push": 2, "revision": "deadbeef"}] diff --git a/backend/tests/test_covdir.py b/backend/tests/test_covdir.py deleted file mode 100644 index d2a6f77af..000000000 --- a/backend/tests/test_covdir.py +++ /dev/null @@ -1,144 +0,0 @@ -# -*- coding: utf-8 -*- -import pytest - - -def test_open_report(tmpdir, mock_covdir_report): - """ - Test opening reports - """ - from code_coverage_backend import covdir - - empty = tmpdir.join("empty.json") - assert covdir.open_report(empty.realpath()) is None - - bad = tmpdir.join("bad.json") - bad.write("not json") - assert covdir.open_report(bad.realpath()) is None - - invalid = tmpdir.join("invalid.json") - invalid.write('"string"') - assert covdir.open_report(invalid.realpath()) is None - - report = covdir.open_report(mock_covdir_report) - assert report is not None - assert isinstance(report, dict) - - assert list(report.keys()) == [ - "children", - "coveragePercent", - "linesCovered", - "linesMissed", - "linesTotal", - "name", - ] - - -def test_get_path_coverage(mock_covdir_report): - """ - Test covdir report parsing to obtain coverage for a specific path - """ - from code_coverage_backend import covdir - - # Full coverage - report = covdir.open_report(mock_covdir_report) - assert report is not None - out = covdir.get_path_coverage(report, "") - assert isinstance(out, dict) - assert out["coveragePercent"] == 85.11 - assert out["linesCovered"] == 267432 - assert out["linesMissed"] == 46779 - assert out["linesTotal"] == 314211 - assert out["name"] == "src" - assert out["path"] == "" - assert out["type"] == "directory" - assert len(out["children"]) == 12 - assert [c["name"] for c in out["children"]] == [ - "builtin", - "ctypes", - "frontend", - "jsapi.cpp", - "jsdate.cpp", - "jsexn.cpp", - "jsexn.h", - "jsmath.cpp", - "perf", - "shell", - "threading", - "util", - ] - - # Subfolder - report = covdir.open_report(mock_covdir_report) - assert report is not None - out = covdir.get_path_coverage(report, "perf") - assert isinstance(out, dict) - assert out["coveragePercent"] == 65.45 - assert out["linesCovered"] == 125 - assert out["linesMissed"] == 66 - assert out["linesTotal"] == 191 - assert out["name"] == "perf" - assert out["path"] == "perf" - assert out["type"] == "directory" - assert len(out["children"]) == 2 - assert [c["name"] for c in out["children"]] == ["pm_linux.cpp", "pm_stub.cpp"] - - # File - report = covdir.open_report(mock_covdir_report) - assert report is not None - out = covdir.get_path_coverage(report, "perf/pm_linux.cpp") - assert isinstance(out, dict) - assert out == { - "children": None, - "coverage": [66, 138, 6, -1, -1], - "coveragePercent": 81.69, - "linesCovered": 58, - "linesMissed": 13, - "linesTotal": 71, - "name": "pm_linux.cpp", - "path": "perf/pm_linux.cpp", - "type": "file", - } - - # Missing file - with pytest.raises(Exception) as e: - report = covdir.open_report(mock_covdir_report) - assert report is not None - covdir.get_path_coverage(report, "nope.py") - assert str(e.value) == "Path nope.py not found in report" - - -def test_get_overall_coverage(mock_covdir_report): - """ - Test covdir report overall coverage extraction - """ - from code_coverage_backend import covdir - - report = covdir.open_report(mock_covdir_report) - assert report is not None - out = covdir.get_overall_coverage(report, max_depth=1) - assert out == { - "": 85.11, - "builtin": 84.4, - "ctypes": 80.83, - "frontend": 78.51, - "perf": 65.45, - "shell": 69.95, - "threading": 90.54, - "util": 73.29, - } - - report = covdir.open_report(mock_covdir_report) - assert report is not None - out = covdir.get_overall_coverage(report, max_depth=2) - assert out == { - "": 85.11, - "builtin": 84.4, - "builtin/intl": 78.62, - "ctypes": 80.83, - "ctypes/libffi": 49.59, - "frontend": 78.51, - "perf": 65.45, - "shell": 69.95, - "threading": 90.54, - "util": 73.29, - } diff --git a/backend/tests/test_coverage.py b/backend/tests/test_coverage.py deleted file mode 100644 index e92320007..000000000 --- a/backend/tests/test_coverage.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- 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 json - - -def test_coverage_supported_extensions_api(client): - # List supported extensions for coverage analysis through the API - resp = client.get("/v2/extensions") - assert resp.status_code == 200 - data = json.loads(resp.data.decode("utf-8")) - assert set(data) == set( - [ - "c", - "h", - "cpp", - "cc", - "cxx", - "hh", - "hpp", - "hxx", - "js", - "jsm", - "rs", - "xul", - "xml", - "html", - "xhtml", - ] - ) diff --git a/backend/tests/test_gcp.py b/backend/tests/test_gcp.py deleted file mode 100644 index 502a0c7c2..000000000 --- a/backend/tests/test_gcp.py +++ /dev/null @@ -1,278 +0,0 @@ -# -*- coding: utf-8 -*- -import hashlib -import json -import os -import uuid - -import pytest - -from code_coverage_backend.report import Report - - -def test_download_report(mock_cache): - """ - Test base method to download a report & store it on local FS - """ - mock_cache.bucket.add_mock_blob("myrepo/deadbeef123/all:all.json.zstd") - - # Does not exist - report = Report(mock_cache.reports_dir, "myrepo", "missing", date=1, push_id=1) - assert mock_cache.download_report(report) is False - - archive = os.path.join( - mock_cache.reports_dir, "myrepo", "deadbeef123", "all:all.json.zstd" - ) - payload = os.path.join( - mock_cache.reports_dir, "myrepo", "deadbeef123", "all:all.json" - ) - assert not os.path.exists(archive) - assert not os.path.exists(payload) - - # Valid blob - report = Report(mock_cache.reports_dir, "myrepo", "deadbeef123", date=1, push_id=1) - assert mock_cache.download_report(report) is True - assert archive == report.archive_path - assert payload == report.path - - # Only the payload remains after download - assert not os.path.exists(archive) - assert os.path.exists(payload) - - assert json.load(open(payload)) == {"children": {}, "coveragePercent": 0.0} - - assert mock_cache.redis.keys("*") == [] - - -def test_ingestion(mock_cache): - """ - Test ingestion of several reports and their retrieval through Redis index - """ - # Setup blobs - mock_cache.bucket.add_mock_blob("myrepo/rev1/all:all.json.zstd", coverage=0.1) - mock_cache.bucket.add_mock_blob("myrepo/rev2/all:all.json.zstd", coverage=0.2) - mock_cache.bucket.add_mock_blob("myrepo/rev10/all:all.json.zstd", coverage=1.0) - - # No reports at first - assert mock_cache.redis.zcard(b"reports:myrepo") == 0 - assert mock_cache.redis.zcard(b"history:myrepo") == 0 - assert mock_cache.list_reports("myrepo") == [] - - # Ingest those 3 reports - report_1 = Report(mock_cache.reports_dir, "myrepo", "rev1", date=1000, push_id=1) - report_2 = Report(mock_cache.reports_dir, "myrepo", "rev2", date=2000, push_id=2) - report_10 = Report(mock_cache.reports_dir, "myrepo", "rev10", date=9000, push_id=10) - mock_cache.ingest_report(report_1) - mock_cache.ingest_report(report_2) - mock_cache.ingest_report(report_10) - - # Check expiry - assert report_1.ttl is None - assert mock_cache.redis.ttl(report_1.key_overall) == -1 - - # They must be in redis and on the file system - assert mock_cache.redis.zcard(b"reports:myrepo:all:all") == 3 - assert mock_cache.redis.zcard(b"history:myrepo") == 3 - assert os.path.exists( - os.path.join(mock_cache.reports_dir, "myrepo", "rev1", "all:all.json") - ) - assert os.path.exists( - os.path.join(mock_cache.reports_dir, "myrepo", "rev2", "all:all.json") - ) - assert os.path.exists( - os.path.join(mock_cache.reports_dir, "myrepo", "rev10", "all:all.json") - ) - - # Reports are exposed, and sorted by push - assert mock_cache.list_reports("another") == [] - assert mock_cache.list_reports("myrepo") == [report_10, report_2, report_1] - assert mock_cache.find_report("myrepo") == report_10 - assert mock_cache.get_history("myrepo", start=200, end=20000) == [ - {"changeset": "rev10", "coverage": 1.0, "date": 9000}, - {"changeset": "rev2", "coverage": 0.2, "date": 2000}, - {"changeset": "rev1", "coverage": 0.1, "date": 1000}, - ] - - # Even if we add a smaller one later on, reports are still sorted - mock_cache.bucket.add_mock_blob("myrepo/rev5/all:all.json.zstd", coverage=0.5) - report_5 = Report(mock_cache.reports_dir, "myrepo", "rev5", date=5000, push_id=5) - mock_cache.ingest_report(report_5) - assert mock_cache.list_reports("myrepo") == [ - report_10, - report_5, - report_2, - report_1, - ] - assert mock_cache.find_report("myrepo") == report_10 - assert mock_cache.find_report("myrepo", push_range=(7, 0)) == report_5 - assert mock_cache.get_history("myrepo", start=200, end=20000) == [ - {"changeset": "rev10", "coverage": 1.0, "date": 9000}, - {"changeset": "rev5", "coverage": 0.5, "date": 5000}, - {"changeset": "rev2", "coverage": 0.2, "date": 2000}, - {"changeset": "rev1", "coverage": 0.1, "date": 1000}, - ] - - -def test_expiry(mock_cache): - """ - Test expiry for platform & suite reports - """ - mock_cache.bucket.add_mock_blob("myrepo/rev1/all:somesuite.json.zstd", coverage=1.0) - report_suite = Report( - mock_cache.reports_dir, - "myrepo", - "rev1", - platform="all", - suite="somesuite", - date=1000, - push_id=1, - ) - mock_cache.ingest_report(report_suite) - assert report_suite.ttl == 1296000 - assert mock_cache.redis.ttl(report_suite.key_overall) > 0 - - mock_cache.bucket.add_mock_blob("myrepo/rev1/win:all.json.zstd", coverage=1.0) - report_platform = Report( - mock_cache.reports_dir, "myrepo", "rev1", platform="win", date=2000, push_id=2 - ) - mock_cache.ingest_report(report_platform) - assert report_platform.ttl == 1296000 - assert mock_cache.redis.ttl(report_platform.key_overall) > 0 - - -def test_ingest_hgmo(mock_cache, mock_hgmo): - """ - Test ingestion using a mock HGMO - """ - - # Add a report on push 995 - rev = hashlib.md5(b"995").hexdigest() - mock_cache.bucket.add_mock_blob( - "myrepo/{}/all:all.json.zstd".format(rev), coverage=0.5 - ) - - # Ingest last pushes - assert mock_cache.list_reports("myrepo") == [] - assert len(mock_cache.redis.keys("changeset:myrepo:*")) == 0 - mock_cache.ingest_pushes("myrepo", "all", "all") - assert len(mock_cache.redis.keys("changeset:myrepo:*")) > 0 - assert mock_cache.list_reports("myrepo") == [ - Report(mock_cache.reports_dir, "myrepo", rev, push_id=1, date=995) - ] - - -def test_closest_report(mock_cache, mock_hgmo): - """ - Test algo to find the closest report for any changeset - """ - # Build revision for push 992 - revision = "992{}".format(uuid.uuid4().hex[3:]) - - # No data at first - assert mock_cache.redis.zcard("reports") == 0 - assert len(mock_cache.redis.keys("changeset:myrepo:*")) == 0 - - # Try to find a report, but none is available - with pytest.raises(Exception) as e: - mock_cache.find_closest_report("myrepo", revision) - assert str(e.value) == "No report found" - - # Some pushes were ingested though - assert len(mock_cache.redis.keys("changeset:myrepo:*")) > 0 - - # Add a report on 994, 2 pushes after our revision - report_rev = hashlib.md5(b"994").hexdigest() - mock_cache.bucket.add_mock_blob( - "myrepo/{}/all:all.json.zstd".format(report_rev), coverage=0.5 - ) - report_994 = Report( - mock_cache.reports_dir, "myrepo", report_rev, push_id=1, date=994 - ) - - # Add a report on 990, 2 pushes before our revision - base_rev = hashlib.md5(b"990").hexdigest() - mock_cache.bucket.add_mock_blob( - "myrepo/{}/all:all.json.zstd".format(base_rev), coverage=0.4 - ) - report_990 = Report(mock_cache.reports_dir, "myrepo", base_rev, push_id=1, date=990) - - # Now we have a report ! - assert mock_cache.list_reports("myrepo") == [] - assert mock_cache.find_closest_report("myrepo", revision) == report_994 - assert mock_cache.list_reports("myrepo") == [report_994] - - # This should also work for revisions before - revision = "991{}".format(uuid.uuid4().hex[3:]) - assert mock_cache.find_closest_report("myrepo", revision) == report_994 - - # ... and the revision on the push itself - revision = "994{}".format(uuid.uuid4().hex[3:]) - assert mock_cache.find_closest_report("myrepo", revision) == report_994 - - # We can also retrieve the base revision - revision = "990{}".format(uuid.uuid4().hex[3:]) - assert mock_cache.find_closest_report("myrepo", revision) == report_990 - revision = "989{}".format(uuid.uuid4().hex[3:]) - assert mock_cache.find_closest_report("myrepo", revision) == report_990 - assert mock_cache.list_reports("myrepo") == [report_994, report_990] - - # But not for revisions after the push - revision = "995{}".format(uuid.uuid4().hex[3:]) - with pytest.raises(Exception) as e: - mock_cache.find_closest_report("myrepo", revision) - assert str(e.value) == "No report found" - - -def test_get_coverage(mock_cache): - """ - Test coverage access with re-download - """ - # No report at first - report = Report(mock_cache.reports_dir, "myrepo", "myhash", push_id=1, date=1) - with pytest.raises(AssertionError) as e: - mock_cache.get_coverage(report, "") - assert str(e.value) == "Missing report myrepo/myhash/all:all" - - # Report available online - mock_cache.bucket.add_mock_blob("myrepo/myhash/all:all.json.zstd") - - # Coverage available - coverage = mock_cache.get_coverage(report, "") - assert coverage == { - "children": [], - "coveragePercent": 0.0, - "path": "", - "type": "directory", - "changeset": "myhash", - } - - # Remove local file - path = os.path.join(mock_cache.reports_dir, "myrepo", "myhash", "all:all.json") - assert os.path.exists(path) - os.unlink(path) - - # Coverage still available - coverage = mock_cache.get_coverage(report, "") - assert coverage == { - "children": [], - "coveragePercent": 0.0, - "path": "", - "type": "directory", - "changeset": "myhash", - } - - # Make invalid json - assert os.path.exists(path) - with open(path, "a") as f: - f.write("break") - - # Coverage still available - coverage = mock_cache.get_coverage(report, "") - assert coverage == { - "children": [], - "coveragePercent": 0.0, - "path": "", - "type": "directory", - "changeset": "myhash", - } - assert os.path.exists(path) - assert isinstance(json.load(open(path)), dict) diff --git a/backend/tools/cleanup.py b/backend/tools/cleanup.py deleted file mode 100644 index 4901ea545..000000000 --- a/backend/tools/cleanup.py +++ /dev/null @@ -1,29 +0,0 @@ -# -*- 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 os - -import redis - - -def cleanup(client, prefix): - nb, memory = 0, 0 - for key in client.keys(f"{prefix}:*"): - if key.endswith(b"all:all"): - continue - - key_memory = client.memory_usage(key) - nb += 1 - memory += key_memory - print(f"Removing {key_memory}b for {key}") - - client.delete(key) - - print(f"Removed {nb} keys for {memory} bytes") - - -if __name__ == "__main__": - client = redis.from_url(os.environ["REDIS_URL"]) - cleanup(client, "overall:mozilla-central") diff --git a/bot/Dockerfile b/bot/Dockerfile index 182e9a0c4..eae45202e 100644 --- a/bot/Dockerfile +++ b/bot/Dockerfile @@ -1,11 +1,9 @@ -FROM python:3.8.4-slim +FROM python:3.14.3-slim -ADD tools /src/tools ADD bot /src/bot RUN /src/bot/ci/bootstrap.sh -RUN cd /src/tools && pip install --disable-pip-version-check --no-cache-dir --quiet . RUN cd /src/bot && pip install --disable-pip-version-check --no-cache-dir --quiet . CMD ["code-coverage-bot"] diff --git a/bot/README.md b/bot/README.md index eea3d56df..f4a7ff9ab 100644 --- a/bot/README.md +++ b/bot/README.md @@ -28,7 +28,7 @@ pre-commit install Check linting (it should be automatically done before any commit): ```console -pre-commint run -a +pre-commit run -a ``` Check unit tests: @@ -44,11 +44,10 @@ Write your local configuration as YAML: common: APP_CHANNEL: dev bot: - BACKEND_HOST: 'http://localhost:8000' EMAIL_ADDRESSES: [] PHABRICATOR_TOKEN: api-xxx PHABRICATOR_ENABLED: false - PHABRICATOR_URL: 'https://phabricator-dev.allizom.org/api/' + PHABRICATOR_URL: "https://phabricator-dev.allizom.org/api/" GOOGLE_CLOUD_STORAGE: null ``` diff --git a/bot/VERSION b/bot/VERSION index ccad953ac..36a5f6b69 100644 --- a/bot/VERSION +++ b/bot/VERSION @@ -1 +1 @@ -1.1.12 +1.3.43 diff --git a/bot/ci/bootstrap.sh b/bot/ci/bootstrap.sh index 9ac168ddf..32d0c0336 100755 --- a/bot/ci/bootstrap.sh +++ b/bot/ci/bootstrap.sh @@ -1,16 +1,16 @@ #!/bin/bash -ex -GRCOV_VERSION="v0.5.14" -MERCURIAL_VERSION="5.3" -VERSION_CONTROL_TOOLS_REV="2f7b4df4a928" +GRCOV_VERSION="v0.10.5" +MERCURIAL_VERSION="7.2" +VERSION_CONTROL_TOOLS_REV="5b6e8298d035" apt-get update # libgoogle-perftools4 is currently required for grcov (until https://github.com/mozilla/grcov/issues/403 is fixed). -apt-get install --no-install-recommends -y gcc curl bzip2 python-dev libgoogle-perftools4 +apt-get install --no-install-recommends -y gcc curl bzip2 python-dev-is-python3 libgoogle-perftools4 pip install --disable-pip-version-check --quiet --no-cache-dir mercurial==$MERCURIAL_VERSION # Setup grcov -curl -L https://github.com/mozilla/grcov/releases/download/$GRCOV_VERSION/grcov-tcmalloc-linux-x86_64.tar.bz2 | tar -C /usr/bin -xjv +curl -L https://github.com/mozilla/grcov/releases/download/$GRCOV_VERSION/grcov-x86_64-unknown-linux-gnu-tc.tar.bz2 | tar -C /usr/bin -xjv chmod +x /usr/bin/grcov # Setup mercurial with needed extensions @@ -18,7 +18,7 @@ hg clone -r $VERSION_CONTROL_TOOLS_REV https://hg.mozilla.org/hgcustom/version-c ln -s /src/bot/ci/hgrc $HOME/.hgrc # Cleanup -apt-get purge -y gcc curl bzip2 python-dev +apt-get purge -y gcc curl bzip2 python-dev-is-python3 apt-get autoremove -y rm -rf /var/lib/apt/lists/* rm -rf /src/version-control-tools/.hg /src/version-control-tools/ansible /src/version-control-tools/docs /src/version-control-tools/testing diff --git a/bot/code_coverage_bot/__init__.py b/bot/code_coverage_bot/__init__.py index 3efd0340c..2c8a79a7a 100644 --- a/bot/code_coverage_bot/__init__.py +++ b/bot/code_coverage_bot/__init__.py @@ -2,3 +2,27 @@ # 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/. + +COVERAGE_EXTENSIONS = [ + # C + "c", + "h", + # C++ + "cpp", + "cc", + "cxx", + "hh", + "hpp", + "hxx", + # JavaScript + "js", + "jsm", + "mjs", + "jsx", + "xul", + "xml", + "html", + "xhtml", + # Rust + "rs", +] diff --git a/bot/code_coverage_bot/artifacts.py b/bot/code_coverage_bot/artifacts.py index f57338c10..97c281238 100644 --- a/bot/code_coverage_bot/artifacts.py +++ b/bot/code_coverage_bot/artifacts.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- import collections +import concurrent.futures import fnmatch import itertools import os @@ -20,8 +21,6 @@ "awsy", "talos", ] # Ignore awsy and talos as they aren't actually suites of tests. -FINISHED_STATUSES = ["completed", "failed", "exception"] -ALL_STATUSES = FINISHED_STATUSES + ["unscheduled", "pending", "running"] STATUS_VALUE = {"exception": 1, "failed": 2, "completed": 3} @@ -130,7 +129,7 @@ def is_filtered_task(self, task): return False - def download_all(self): + def download_all(self) -> None: os.makedirs(self.parent_dir, exist_ok=True) logger.info("Downloading artifacts from {} tasks".format(len(self.test_tasks))) @@ -138,24 +137,29 @@ def download_all(self): for test_task in self.test_tasks: status = test_task["status"]["state"] task_id = test_task["status"]["taskId"] - while status not in FINISHED_STATUSES: - assert status in ALL_STATUSES, "State '{}' not recognized".format( - status - ) - logger.info(f"Waiting for task {task_id} to finish...") - time.sleep(60) + if status in taskcluster.FINISHED_STATUSES: + continue + while True: + # refresh the status information task_status = taskcluster.get_task_status(task_id) status = task_status["status"]["state"] - # Update the task status, as we will use it to compare statuses later. - test_task["status"]["state"] = status + assert ( + status in taskcluster.ALL_STATUSES + ), "State '{}' not recognized".format(status) + if status in taskcluster.FINISHED_STATUSES: + # Update the task status, as we will use it to compare statuses later. + test_task["status"]["state"] = status + break + logger.info(f"Waiting for task {task_id} to finish...") + time.sleep(60) # Choose best tasks to download (e.g. 'completed' is better than 'failed') download_tasks = {} for test_task in self.test_tasks: status = test_task["status"]["state"] - assert status in FINISHED_STATUSES, "State '{}' not recognized".format( - status - ) + assert ( + status in taskcluster.FINISHED_STATUSES + ), "State '{}' not recognized".format(status) chunk_name = taskcluster.get_chunk(test_task["task"]) platform_name = taskcluster.get_platform(test_task["task"]) @@ -175,7 +179,15 @@ def download_all(self): download_tasks[(chunk_name, platform_name)] = test_task with ThreadPoolExecutorResult() as executor: - for test_task in download_tasks.values(): + futures = [ executor.submit(self.download, test_task) + for test_task in download_tasks.values() + ] + for future in concurrent.futures.as_completed(futures): + exc = future.exception() + if exc is not None: + logger.error("Exception while downloading artifacts", exception=exc) + for f in futures: + f.cancel() logger.info("Code coverage artifacts downloaded") diff --git a/bot/code_coverage_bot/chunk_mapping.py b/bot/code_coverage_bot/chunk_mapping.py index 597af04f4..c6163af4b 100644 --- a/bot/code_coverage_bot/chunk_mapping.py +++ b/bot/code_coverage_bot/chunk_mapping.py @@ -38,7 +38,7 @@ def get_suites(revision): "and": [ {"eq": {"repo.branch.name": "mozilla-central"}}, {"eq": {"repo.changeset.id12": revision[:12]}}, - {"regexp": {"run.key": ".*-ccov/.*"}}, + {"regexp": {"run.key": ".*-ccov.*/.*"}}, ] }, "limit": 500000, @@ -62,7 +62,7 @@ def get_tests_chunks(revision, platform, suite): {"eq": {"repo.branch.name": "mozilla-central"}}, {"eq": {"repo.changeset.id12": revision[:12]}}, {"eq": {"run.suite.fullname": suite}}, - {"regexp": {"run.key": f".*-{platform}.*-ccov/.*"}}, + {"regexp": {"run.key": f".*-{platform}.*-ccov.*/.*"}}, ] }, "limit": 50000, diff --git a/bot/code_coverage_bot/cli.py b/bot/code_coverage_bot/cli.py index 605a7b68a..610797055 100644 --- a/bot/code_coverage_bot/cli.py +++ b/bot/code_coverage_bot/cli.py @@ -10,18 +10,24 @@ from code_coverage_bot.secrets import secrets from code_coverage_bot.taskcluster import taskcluster_config -from code_coverage_tools.log import init_logger +from code_coverage_bot.libmozdata import setup as setup_libmozdata +from code_coverage_bot.log import init_logger -def setup_cli(ask_repository=True, ask_revision=True): +def setup_cli(parameters=True): """ Setup CLI options parser and taskcluster bootstrap """ parser = argparse.ArgumentParser(description="Mozilla Code Coverage Bot") - if ask_repository: + if parameters: parser.add_argument("--repository", default=os.environ.get("REPOSITORY")) - if ask_revision: + + parser.add_argument( + "--task-group-id", default=os.environ.get("TESTS_TASK_GROUP_ID") + ) + parser.add_argument("--revision", default=os.environ.get("REVISION")) + parser.add_argument( "--cache-root", required=True, help="Cache root, used to pull changesets" ) @@ -49,6 +55,18 @@ def setup_cli(ask_repository=True, ask_revision=True): parser.add_argument("--taskcluster-access-token", help="Taskcluster Access token") args = parser.parse_args() + if parameters: + if args.task_group_id and (args.repository or args.revision): + parser.error( + "Provide either --task-group-id or --repository/--revision, not both." + ) + + if args.repository and not args.revision: + parser.error("--repository requires --revision") + + if not args.task_group_id and not args.repository: + parser.error("Provide either --task-group-id or --repository/--revision.") + # Auth on Taskcluster taskcluster_config.auth(args.taskcluster_client_id, args.taskcluster_access_token) @@ -65,7 +83,10 @@ def setup_cli(ask_repository=True, ask_revision=True): channel=secrets.get("APP_CHANNEL", "dev"), PAPERTRAIL_HOST=secrets.get("PAPERTRAIL_HOST"), PAPERTRAIL_PORT=secrets.get("PAPERTRAIL_PORT"), - sentry_dsn=secrets.get("SENTRY_DSN"), + SENTRY_DSN=secrets.get("SENTRY_DSN"), ) + # Setup libmozdata configuration. + setup_libmozdata("code_coverage_bot") + return args diff --git a/bot/code_coverage_bot/commit_coverage.py b/bot/code_coverage_bot/commit_coverage.py new file mode 100644 index 000000000..8a9103d43 --- /dev/null +++ b/bot/code_coverage_bot/commit_coverage.py @@ -0,0 +1,159 @@ +# -*- 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 concurrent.futures +import io +import json +import os +import threading +import time + +import hglib +import structlog +import zstandard +from tqdm import tqdm + +from code_coverage_bot import hgmo +from code_coverage_bot.phabricator import PhabricatorUploader +from code_coverage_bot.secrets import secrets +from code_coverage_bot.utils import ThreadPoolExecutorResult +from code_coverage_bot.gcp import DEFAULT_FILTER +from code_coverage_bot.gcp import download_report +from code_coverage_bot.gcp import get_bucket +from code_coverage_bot.gcp import get_name +from code_coverage_bot.gcp import list_reports + +logger = structlog.get_logger(__name__) + +hg_servers = list() +hg_servers_lock = threading.Lock() +thread_local = threading.local() + + +def _init_thread(repo_dir: str) -> None: + hg_server = hglib.open(repo_dir) + thread_local.hg = hg_server + with hg_servers_lock: + hg_servers.append(hg_server) + + +def generate(server_address: str, repo_dir: str, out_dir: str = ".") -> None: + start_time = time.monotonic() + + commit_coverage_path = os.path.join(out_dir, "commit_coverage.json.zst") + + assert ( + secrets[secrets.GOOGLE_CLOUD_STORAGE] is not None + ), "Missing GOOGLE_CLOUD_STORAGE secret" + bucket = get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) + + blob = bucket.blob("commit_coverage.json.zst") + if blob.exists(): + dctx = zstandard.ZstdDecompressor() + commit_coverage = json.loads( + dctx.decompress(blob.download_as_bytes(raw_download=True)) + ) + else: + commit_coverage = {} + + cctx = zstandard.ZstdCompressor(threads=-1) + + def _upload(): + blob = bucket.blob("commit_coverage.json.zst") + blob.upload_from_string( + cctx.compress(json.dumps(commit_coverage).encode("ascii")) + ) + blob.content_type = "application/json" + blob.content_encoding = "zstd" + blob.patch() + + # We are only interested in "overall" coverage, not platform or suite specific. + changesets_to_analyze = [ + changeset + for changeset, platform, suite in list_reports(bucket, "mozilla-central") + if platform == DEFAULT_FILTER and suite == DEFAULT_FILTER + ] + + # Skip already analyzed changesets. + changesets_to_analyze = [ + changeset + for changeset in changesets_to_analyze + if changeset not in commit_coverage + ] + + # Use the local server to generate the coverage mapping, as it is faster and + # correct. + def analyze_changeset(changeset_to_analyze: str) -> None: + report_name = get_name( + "mozilla-central", changeset_to_analyze, DEFAULT_FILTER, DEFAULT_FILTER + ) + assert download_report( + os.path.join(out_dir, "ccov-reports"), bucket, report_name + ) + + with open( + os.path.join(out_dir, "ccov-reports", f"{report_name}.json"), "r" + ) as f: + report = json.load(f) + + phabricatorUploader = PhabricatorUploader( + repo_dir, changeset_to_analyze, warnings_enabled=False + ) + + # Use the hg.mozilla.org server to get the automation relevant changesets, since + # this information is broken in our local repo (which mozilla-unified). + with hgmo.HGMO(server_address=server_address) as hgmo_remote_server: + changesets = hgmo_remote_server.get_automation_relevance_changesets( + changeset_to_analyze + ) + + results = phabricatorUploader.generate(thread_local.hg, report, changesets) + + for changeset in changesets: + # Lookup changeset coverage from phabricator uploader + coverage = results.get(changeset["node"]) + if coverage is None: + logger.info("No coverage found", changeset=changeset) + commit_coverage[changeset["node"]] = None + continue + + commit_coverage[changeset["node"]] = { + "added": sum(c["lines_added"] for c in coverage["paths"].values()), + "covered": sum(c["lines_covered"] for c in coverage["paths"].values()), + "unknown": sum(c["lines_unknown"] for c in coverage["paths"].values()), + } + + max_workers = min(32, (os.cpu_count() or 1) + 4) + logger.info(f"Analyzing {len(changesets_to_analyze)} with {max_workers} workers") + + with ThreadPoolExecutorResult( + initializer=_init_thread, initargs=(repo_dir,) + ) as executor: + futures = [ + executor.submit(analyze_changeset, changeset) + for changeset in changesets_to_analyze + ] + for changeset, future in tqdm( + zip(changesets_to_analyze, concurrent.futures.as_completed(futures)), + total=len(futures), + ): + exc = future.exception() + if exc is not None: + logger.error(f"Exception {exc} while analyzing {changeset}") + + if time.monotonic() - start_time >= 600: + _upload() + start_time = time.monotonic() + + while len(hg_servers) > 0: + hg_server = hg_servers.pop() + hg_server.close() + + _upload() + + with open(commit_coverage_path, "wb") as zf: + with cctx.stream_writer(zf) as compressor: + with io.TextIOWrapper(compressor, encoding="ascii") as f: + json.dump(commit_coverage, f) diff --git a/bot/code_coverage_bot/gcp.py b/bot/code_coverage_bot/gcp.py new file mode 100644 index 000000000..8a66a9b33 --- /dev/null +++ b/bot/code_coverage_bot/gcp.py @@ -0,0 +1,100 @@ +# -*- coding: utf-8 -*- +import os +import re +from datetime import datetime +from datetime import timedelta +from typing import Iterator +from typing import Optional +from typing import Tuple + +import pytz +import structlog +import zstandard +from google.cloud import storage as gcp_storage +from google.oauth2.service_account import Credentials + +logger = structlog.get_logger(__name__) + +DEFAULT_FILTER = "all" + + +def get_bucket(service_account: dict) -> gcp_storage.bucket.Bucket: + """ + Build a Google Cloud Storage client & bucket + from Taskcluster secret + """ + # Load credentials from Taskcluster secret + if "bucket" not in service_account: + raise KeyError("Missing bucket in GOOGLE_CLOUD_STORAGE") + bucket = service_account["bucket"] + + # Use those credentials to create a Storage client + # The project is needed to avoid checking env variables and crashing + creds = Credentials.from_service_account_info(service_account) + client = gcp_storage.Client(project=creds.project_id, credentials=creds) + + return client.get_bucket(bucket) + + +def get_name(repository: str, changeset: str, platform: str, suite: str) -> str: + return f"{repository}/{changeset}/{platform}:{suite}" + + +def download_report( + base_dir: str, bucket: gcp_storage.bucket.Bucket, name: str +) -> bool: + path = f"{name}.json" + archive_path = f"{name}.json.zstd" + full_archive_path = os.path.join(base_dir, archive_path) + full_path = os.path.join(base_dir, path) + + blob = bucket.blob(archive_path) + if not blob.exists(): + logger.debug("No report found on GCP", path=archive_path) + return False + + if os.path.exists(full_path): + logger.info("Report already available", path=full_path) + return True + + os.makedirs(os.path.dirname(full_archive_path), exist_ok=True) + blob.download_to_filename(full_archive_path, raw_download=True) + logger.info("Downloaded report archive", path=full_archive_path) + + with open(full_path, "wb") as output: + with open(full_archive_path, "rb") as archive: + dctx = zstandard.ZstdDecompressor() + reader = dctx.stream_reader(archive) + while True: + chunk = reader.read(16384) + if not chunk: + break + output.write(chunk) + + os.unlink(full_archive_path) + return True + + +def list_reports( + bucket: gcp_storage.bucket.Bucket, repository: str, until: Optional[datetime] = None +) -> Iterator[Tuple[str, str, str]]: + REGEX_BLOB = re.compile( + r"^{}/(\w+)/([\w\-]+):([\w\-]+).json.zstd$".format(repository) + ) + now = datetime.utcnow().replace(tzinfo=pytz.UTC) + for blob in bucket.list_blobs(prefix=repository): + if isinstance(until, timedelta) and (now - blob.time_created) >= until: + logger.debug(f"Skipping old blob {blob}") + continue + + # Get changeset from blob name + match = REGEX_BLOB.match(blob.name) + if match is None: + logger.warn("Invalid blob found {}".format(blob.name)) + continue + changeset = match.group(1) + platform = match.group(2) + suite = match.group(3) + + # Build report instance and ingest it + yield changeset, platform, suite diff --git a/bot/code_coverage_bot/grcov.py b/bot/code_coverage_bot/grcov.py index 00e2d9abd..e1fe76dae 100644 --- a/bot/code_coverage_bot/grcov.py +++ b/bot/code_coverage_bot/grcov.py @@ -13,7 +13,7 @@ def report(artifacts, source_dir=None, out_format="covdir", options=[]): "lcov", "coveralls+", ), "Unsupported output format" - cmd = ["grcov", "-t", out_format] + cmd = ["grcov", "--ignore-parsing-error", "-t", out_format] # Coveralls+ is only needed for zero-coverage reports if out_format == "coveralls+": diff --git a/bot/code_coverage_bot/hgmo.py b/bot/code_coverage_bot/hgmo.py index 32a41c1b2..9ec52898c 100644 --- a/bot/code_coverage_bot/hgmo.py +++ b/bot/code_coverage_bot/hgmo.py @@ -6,11 +6,13 @@ import requests import structlog +from typing import Iterable + + logger = structlog.get_logger(__name__) class HGMO(object): - PID_FILE = "hgmo.pid" SERVER_ADDRESS = "http://localhost:8000" @@ -56,50 +58,81 @@ def __exit__(self, type, value, traceback): os.remove(self.pid_file) logger.info("hgmo has been killed") - def get_pushes(self, startID=None, changeset=None): - assert startID is not None or changeset is not None + def get_pushes( + self, + startID=None, + endID=None, + startDate=None, + changeset=None, + full=True, + tipsonly=False, + ): + params = {"version": 2} - params = {"version": 2, "full": 1} + if full: + params["full"] = 1 + + if tipsonly: + params["tipsonly"] = 1 if startID is not None: params["startID"] = startID + if endID is not None: + params["endID"] = endID + + if startDate is not None: + params["startdate"] = startDate + if changeset is not None: params["changeset"] = changeset - r = requests.get("{}/json-pushes".format(self.server_address), params=params) + r = requests.get( + "{}/json-pushes".format(self.server_address), + params=params, + headers={"User-Agent": "code-coverage-bot"}, + ) r.raise_for_status() return r.json() - def get_annotate(self, revision, path): + def get_automation_relevance_changesets(self, changeset): r = requests.get( - "{}/json-annotate/{}/{}".format(self.server_address, revision, path) + "{}/json-automationrelevance/{}".format( + self.server_address, + changeset, + ), + headers={"User-Agent": "code-coverage-bot"}, ) + r.raise_for_status() + return r.json()["changesets"] - # 200 means success. - # 404 means a file that doesn't exist (never existed or was removed). - if r.status_code not in [200, 404]: - r.raise_for_status() - annotate_data = r.json() +def iter_pushes( + server_address: str, +) -> Iterable[tuple[int, dict]]: + """Yield pushes from newest to oldest push-id.""" + start_id = None + end_id = None - if "error" in annotate_data: - if "not found in manifest" in annotate_data["error"]: - # The file was removed. - return None - else: - raise Exception( - "Error while retrieving annotate data: {}".format( - annotate_data["error"] - ) - ) + with HGMO(server_address=server_address) as hgmo_server: + while True: + data = hgmo_server.get_pushes( + startID=start_id, endID=end_id, full=False, tipsonly=True + ) + pushes = data.get("pushes", {}) - return annotate_data["annotate"] + if not pushes: + return - def get_automation_relevance_changesets(self, changeset): - r = requests.get( - "{}/json-automationrelevance/{}".format(self.server_address, changeset) - ) - r.raise_for_status() - return r.json()["changesets"] + push_ids = sorted((int(push_id) for push_id in pushes.keys()), reverse=True) + for push_id in push_ids: + yield push_id, pushes[str(push_id)] + + oldest_seen = push_ids[-1] + if oldest_seen <= 1: + return + + # json-pushes treats startID as exclusive and endID as inclusive. + end_id = oldest_seen - 1 + start_id = max(1, end_id - len(pushes)) diff --git a/bot/code_coverage_bot/hooks/base.py b/bot/code_coverage_bot/hooks/base.py index 01d3f9a1e..26b7da035 100644 --- a/bot/code_coverage_bot/hooks/base.py +++ b/bot/code_coverage_bot/hooks/base.py @@ -3,6 +3,7 @@ # 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 concurrent.futures import os from datetime import datetime from datetime import timedelta @@ -48,8 +49,9 @@ def __init__( "Mercurial setup", repository=self.repository, revision=self.revision ) - assert os.path.isdir(cache_root), f"Cache root {cache_root} is not a dir." - self.repo_dir = os.path.join(cache_root, self.branch) + if cache_root is not None: + assert os.path.isdir(cache_root), f"Cache root {cache_root} is not a dir." + self.repo_dir = os.path.join(cache_root, self.branch) # Load coverage tasks for all platforms decision_task_id = taskcluster.get_decision_task(self.branch, self.revision) @@ -102,11 +104,25 @@ def clone_repository(self): def retrieve_source_and_artifacts(self): with ThreadPoolExecutorResult(max_workers=2) as executor: + futures = [] + # Thread 1 - Download coverage artifacts. - executor.submit(self.artifactsHandler.download_all) + futures.append(executor.submit(self.artifactsHandler.download_all)) # Thread 2 - Clone repository. - executor.submit(self.clone_repository) + futures.append(executor.submit(self.clone_repository)) + + for future in concurrent.futures.as_completed(futures): + exc = future.exception() + if exc is not None: + logger.error( + "Exception while downloading coverage artifacts or cloning repository", + exception=exc, + ) + from traceback import format_exception + + logger.error(format_exception(exc, exc, exc.__traceback__)) + os._exit(1) def build_reports(self, only=None): """ @@ -119,7 +135,6 @@ def build_reports(self, only=None): (platform, suite), artifacts, ) in self.artifactsHandler.get_combinations().items(): - if only is not None and (platform, suite) not in only: continue diff --git a/bot/code_coverage_bot/hooks/cron.py b/bot/code_coverage_bot/hooks/cron.py index 00bfc857c..b95b053ee 100644 --- a/bot/code_coverage_bot/hooks/cron.py +++ b/bot/code_coverage_bot/hooks/cron.py @@ -3,10 +3,9 @@ # 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 structlog -from code_coverage_bot import chunk_mapping +from code_coverage_bot import commit_coverage from code_coverage_bot import config from code_coverage_bot import uploader from code_coverage_bot.cli import setup_cli @@ -23,25 +22,27 @@ class CronHook(Hook): """ def __init__(self, *args, **kwargs): - # Retrieve latest ingested revision try: - revision = uploader.gcp_latest("mozilla-central")[0]["revision"] + revision = uploader.gcp_latest(config.MOZILLA_CENTRAL_REPOSITORY) except Exception as e: logger.warn("Failed to retrieve the latest reports ingested: {}".format(e)) raise super().__init__(config.MOZILLA_CENTRAL_REPOSITORY, revision, *args, **kwargs) - def run(self): + def run(self) -> None: self.retrieve_source_and_artifacts() + commit_coverage.generate(self.repository, self.repo_dir) + logger.info("Generating zero coverage reports") zc = ZeroCov(self.repo_dir) zc.generate(self.artifactsHandler.get(), self.revision) - logger.info("Generating chunk mapping") - chunk_mapping.generate(self.repo_dir, self.revision, self.artifactsHandler) + # This is disabled as it is not used yet. + # logger.info("Generating chunk mapping") + # chunk_mapping.generate(self.repo_dir, self.revision, self.artifactsHandler) # Index the task in the TaskCluster index at the given revision and as "latest". # Given that all tasks have the same rank, the latest task that finishes will @@ -58,8 +59,8 @@ def run(self): ) -def main(): +def main() -> None: logger.info("Starting code coverage bot for cron") - args = setup_cli(ask_revision=False, ask_repository=False) + args = setup_cli(parameters=False) hook = CronHook(args.task_name_filter, args.cache_root, args.working_dir) hook.run() diff --git a/bot/code_coverage_bot/hooks/crontrigger.py b/bot/code_coverage_bot/hooks/crontrigger.py new file mode 100644 index 000000000..504af883c --- /dev/null +++ b/bot/code_coverage_bot/hooks/crontrigger.py @@ -0,0 +1,55 @@ +# -*- 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 structlog + +from code_coverage_bot import config +from code_coverage_bot import trigger_missing +from code_coverage_bot import uploader +from code_coverage_bot.cli import setup_cli +from code_coverage_bot.hooks.base import Hook +from code_coverage_bot.secrets import secrets + +logger = structlog.get_logger(__name__) + + +class CronTriggerHook(Hook): + """ + This function is executed when the bot is triggered via cron. + """ + + def __init__(self, *args, **kwargs): + # Retrieve latest ingested revision + try: + revision = uploader.gcp_latest(config.MOZILLA_CENTRAL_REPOSITORY) + except Exception as e: + logger.warn("Failed to retrieve the latest reports ingested: {}".format(e)) + raise + + super().__init__(config.MOZILLA_CENTRAL_REPOSITORY, revision, *args, **kwargs) + + def run(self) -> None: + trigger_missing.trigger_missing(config.MOZILLA_CENTRAL_REPOSITORY) + + # Index the task in the TaskCluster index at the given revision and as "latest". + # Given that all tasks have the same rank, the latest task that finishes will + # overwrite the "latest" entry. + self.index_task( + [ + "project.relman.code-coverage.{}.crontrigger.{}".format( + secrets[secrets.APP_CHANNEL], self.revision + ), + "project.relman.code-coverage.{}.crontrigger.latest".format( + secrets[secrets.APP_CHANNEL] + ), + ] + ) + + +def main() -> None: + logger.info("Starting code coverage bot for crontrigger") + args = setup_cli(parameters=False) + hook = CronTriggerHook(args.task_name_filter, None, args.working_dir) + hook.run() diff --git a/bot/code_coverage_bot/hooks/repo.py b/bot/code_coverage_bot/hooks/repo.py index 4c70a8ff6..ee28c5096 100644 --- a/bot/code_coverage_bot/hooks/repo.py +++ b/bot/code_coverage_bot/hooks/repo.py @@ -6,18 +6,21 @@ import json import os import zipfile +from datetime import timedelta import structlog from code_coverage_bot import config +from code_coverage_bot import taskcluster from code_coverage_bot import hgmo from code_coverage_bot import uploader from code_coverage_bot.cli import setup_cli from code_coverage_bot.hooks.base import Hook -from code_coverage_bot.notifier import notify_email from code_coverage_bot.phabricator import PhabricatorUploader from code_coverage_bot.phabricator import parse_revision_id from code_coverage_bot.secrets import secrets +from code_coverage_bot.taskcluster import taskcluster_config +from code_coverage_bot import gcp logger = structlog.get_logger(__name__) @@ -64,17 +67,11 @@ def check_javascript_files(self): f"{missing_files} are present in coverage reports, but missing from the repository" ) - def get_hgmo_changesets(self, use_local_clone=True): + def get_hgmo_changesets(self): """ Build HGMO changesets according to this repo's configuration """ - hgmo_config = {} - if use_local_clone: - hgmo_config["repo_dir"] = self.repo_dir - else: - hgmo_config["server_address"] = self.repository - - with hgmo.HGMO(**hgmo_config) as hgmo_server: + with hgmo.HGMO(server_address=self.repository) as hgmo_server: return hgmo_server.get_automation_relevance_changesets(self.revision) def upload_phabricator(self, report, changesets): @@ -108,40 +105,29 @@ def __init__(self, *args, **kwargs): def run(self): # Check the covdir report does not already exists - if uploader.gcp_covdir_exists(self.branch, self.revision, "all", "all"): + bucket = gcp.get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) + if uploader.gcp_covdir_exists(bucket, self.branch, self.revision, "all", "all"): logger.warn("Full covdir report already on GCP") return + # Generate and upload the full report as soon as possible, so it is available + # for consumers (e.g. Searchfox) right away. self.retrieve_source_and_artifacts() - self.check_javascript_files() - - reports = self.build_reports() - logger.info("Built all covdir reports", nb=len(reports)) + reports = self.build_reports(only=[("all", "all")]) - # Retrieve the full report full_path = reports.get(("all", "all")) assert full_path is not None, "Missing full report (all:all)" - report = json.load(open(full_path)) - - # Check extensions - paths = uploader.covdir_paths(report) - for extension in [".js", ".cpp"]: - assert any( - path.endswith(extension) for path in paths - ), "No {} file in the generated report".format(extension) - - # Upload reports on GCP - self.upload_reports(reports) - logger.info("Uploaded all covdir reports", nb=len(reports)) - - # Upload coverage on phabricator - changesets = self.get_hgmo_changesets() - coverage = self.upload_phabricator(report, changesets) - - # Send an email on low coverage - notify_email(self.revision, changesets, coverage) - logger.info("Sent low coverage email notification") + with open(full_path, "r") as f: + report_text = f.read() + + # Upload report as an artifact. + taskcluster_config.upload_artifact( + "public/code-coverage-report.json", + report_text, + "application/json", + timedelta(days=14), + ) # Index on Taskcluster self.index_task( @@ -155,6 +141,36 @@ def run(self): ] ) + report = json.loads(report_text) + + # Check extensions + paths = uploader.covdir_paths(report) + for extension in [".js", ".cpp"]: + assert any( + path.endswith(extension) for path in paths + ), "No {} file in the generated report".format(extension) + + # Upload coverage on phabricator + # changesets = self.get_hgmo_changesets() + # coverage = self.upload_phabricator(report, changesets) + + # Send an email on low coverage + # notify_email(self.revision, changesets, coverage) + # logger.info("Sent low coverage email notification") + + if secrets.get(secrets.CHECK_JAVASCRIPT_FILES, False): + self.check_javascript_files() + + # Generate all reports except the full one which we generated earlier. + all_report_combinations = self.artifactsHandler.get_combinations() + del all_report_combinations[("all", "all")] + reports.update(self.build_reports()) + logger.info("Built all covdir reports", nb=len(reports)) + + # Upload reports on GCP + self.upload_reports(reports) + logger.info("Uploaded all covdir reports", nb=len(reports)) + class TryHook(RepositoryHook): """ @@ -173,7 +189,7 @@ def __init__(self, *args, **kwargs): ) def run(self): - changesets = self.get_hgmo_changesets(use_local_clone=False) + changesets = self.get_hgmo_changesets() if not any( parse_revision_id(changeset["desc"]) is not None for changeset in changesets @@ -191,10 +207,10 @@ def run(self): # Retrieve the full report full_path = reports.get(("all", "all")) assert full_path is not None, "Missing full report (all:all)" - report = json.load(open(full_path)) + # report = json.load(open(full_path)) # Upload coverage on phabricator - self.upload_phabricator(report, changesets) + # self.upload_phabricator(report, changesets) # Index on Taskcluster self.index_task( @@ -213,14 +229,22 @@ def main(): logger.info("Starting code coverage bot for repository") args = setup_cli() + if args.repository: + repository = args.repository + revision = args.revision + else: + decision_task = taskcluster.get_task_details(args.task_group_id) + repository = decision_task["payload"]["env"]["GECKO_HEAD_REPOSITORY"] + revision = decision_task["payload"]["env"]["GECKO_HEAD_REV"] + hooks = { config.MOZILLA_CENTRAL_REPOSITORY: MozillaCentralHook, config.TRY_REPOSITORY: TryHook, } - hook_class = hooks.get(args.repository) - assert hook_class is not None, f"Unsupported repository {args.repository}" + hook_class = hooks.get(repository) + assert hook_class is not None, f"Unsupported repository {repository}" hook = hook_class( - args.revision, args.task_name_filter, args.cache_root, args.working_dir + revision, args.task_name_filter, args.cache_root, args.working_dir ) hook.run() diff --git a/bot/code_coverage_bot/libmozdata.py b/bot/code_coverage_bot/libmozdata.py new file mode 100644 index 000000000..877d61fc4 --- /dev/null +++ b/bot/code_coverage_bot/libmozdata.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- + +from importlib.metadata import version + +import structlog +from libmozdata.config import Config +from libmozdata.config import set_config + +logger = structlog.get_logger(__name__) + + +class LocalConfig(Config): + """ + Provide required configuration for libmozdata + using an in-memory class instead of an INI file. + """ + + def __init__(self, name, package_version): + self.user_agent = f"{name}/{package_version}" + logger.debug("User agent configured", user_agent=self.user_agent) + + def get(self, section, option, default=None, **kwargs): + if section == "User-Agent" and option == "name": + return self.user_agent + + return default + + +def setup(package_name): + # Get version for main package. + package_version = version(package_name) + + # Provide a custom libmozdata configuration. + set_config(LocalConfig(package_name, package_version)) diff --git a/bot/code_coverage_bot/log.py b/bot/code_coverage_bot/log.py new file mode 100644 index 000000000..99bdd915f --- /dev/null +++ b/bot/code_coverage_bot/log.py @@ -0,0 +1,177 @@ +# -*- 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 logging +import logging.handlers +import os +import re + +import importlib.metadata +import sentry_sdk +import structlog +from sentry_sdk.integrations.logging import LoggingIntegration + +root = logging.getLogger() + +# Found on https://stackoverflow.com/questions/14693701/how-can-i-remove-the-ansi-escape-sequences-from-a-string-in-python +# 7-bit C1 ANSI sequences +ANSI_ESCAPE = re.compile( + r""" + \x1B # ESC + (?: # 7-bit C1 Fe (except CSI) + [@-Z\\-_] + | # or [ for CSI, followed by a control sequence + \[ + [0-?]* # Parameter bytes + [ -/]* # Intermediate bytes + [@-~] # Final byte + ) +""", + re.VERBOSE, +) + + +class AppNameFilter(logging.Filter): + def __init__(self, project_name, channel, *args, **kwargs): + self.project_name = project_name + self.channel = channel + super().__init__(*args, **kwargs) + + def filter(self, record): + record.app_name = f"code-coverage/{self.channel}/{self.project_name}" + return True + + +def setup_papertrail(project_name, channel, PAPERTRAIL_HOST, PAPERTRAIL_PORT): + """ + Setup papertrail account using taskcluster secrets + """ + + # Setup papertrail + papertrail = logging.handlers.SysLogHandler( + address=(PAPERTRAIL_HOST, int(PAPERTRAIL_PORT)), + ) + formatter = logging.Formatter( + "%(app_name)s: %(asctime)s %(filename)s: %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + ) + papertrail.setLevel(logging.INFO) + papertrail.setFormatter(formatter) + # This filter is used to add the 'app_name' value to all logs to be formatted + papertrail.addFilter(AppNameFilter(project_name, channel)) + root.addHandler(papertrail) + + +def remove_color_codes(event, hint): + """ + Remove ANSI color codes from a Sentry event before it gets published + """ + + def _remove(content): + try: + return ANSI_ESCAPE.sub("", content) + except Exception as e: + # Do not log here, rely on simple print + print(f"Failed to remove color code: {e}") + return content + + # Remove from breadcrumb + breadcrumbs = event.get("breadcrumbs", {}) + for value in breadcrumbs.get("values", []): + if "message" in value: + value["message"] = _remove(value["message"]) + + # Remove from log entry + logentry = event.get("logentry", {}) + if "message" in logentry: + logentry["message"] = _remove(logentry["message"]) + + return event + + +def setup_sentry(name, channel, dsn): + """ + Setup sentry account using taskcluster secrets + """ + + # Detect environment + task_id = os.environ.get("TASK_ID") + if task_id is not None: + site = "taskcluster" + elif "DYNO" in os.environ: + site = "heroku" + else: + site = "unknown" + + # This integration allows sentry to catch logs from logging and process them + # By default, the 'event_level' is set to ERROR, we are defining it to WARNING + sentry_logging = LoggingIntegration( + level=logging.INFO, # Capture INFO and above as breadcrumbs + event_level=logging.WARNING, # Send WARNINGs as events + ) + # sentry_sdk will automatically retrieve the 'extra' attribute from logs and + # add contained values as Additional Data on the dashboard of the Sentry issue + sentry_sdk.init( + dsn=dsn, + integrations=[sentry_logging], + server_name=name, + environment=channel, + release=importlib.metadata.version(f"code-coverage-{name}"), + before_send=remove_color_codes, + ) + sentry_sdk.set_tag("site", site) + + if task_id is not None: + # Add a Taskcluster task id when available + # It will be shown in a new section called Task on the dashboard + sentry_sdk.set_context("task", {"task_id": task_id}) + + +def init_logger( + project_name, + channel=None, + level=logging.INFO, + PAPERTRAIL_HOST=None, + PAPERTRAIL_PORT=None, + SENTRY_DSN=None, +): + if not channel: + channel = os.environ.get("APP_CHANNEL") + + # Render extra information from structlog on default logging output + formatter = logging.Formatter( + "%(asctime)s.%(msecs)06d [%(levelname)-8s] %(message)s", + datefmt="%Y-%m-%d %H:%M:%S", + ) + handler = logging.StreamHandler() + handler.setFormatter(formatter) + root_logger = logging.getLogger() + root_logger.addHandler(handler) + root_logger.setLevel(level) + + # Log to papertrail + if channel and PAPERTRAIL_HOST and PAPERTRAIL_PORT: + setup_papertrail(project_name, channel, PAPERTRAIL_HOST, PAPERTRAIL_PORT) + + # Log to sentry + if channel and SENTRY_DSN: + setup_sentry(project_name, channel, SENTRY_DSN) + + # Setup structlog + processors = [ + structlog.contextvars.merge_contextvars, + structlog.processors.add_log_level, + structlog.processors.StackInfoRenderer(), + structlog.dev.set_exc_info, + structlog.dev.ConsoleRenderer(), + ] + + structlog.configure( + processors=processors, + context_class=structlog.threadlocal.wrap_dict(dict), + logger_factory=structlog.stdlib.LoggerFactory(), + wrapper_class=structlog.stdlib.BoundLogger, + cache_logger_on_first_use=True, + ) diff --git a/bot/code_coverage_bot/notifier.py b/bot/code_coverage_bot/notifier.py index 52d4e98c2..1e89d08b7 100644 --- a/bot/code_coverage_bot/notifier.py +++ b/bot/code_coverage_bot/notifier.py @@ -19,23 +19,22 @@ def notify_email(revision, changesets, changesets_coverage): for changeset in changesets: desc = changeset["desc"].split("\n")[0] - if any(text in desc for text in ["r=merge", "a=merge"]): - continue - # Lookup changeset coverage from phabricator uploader rev_id = parse_revision_id(changeset["desc"]) if rev_id is None: continue - coverage = changesets_coverage.get(rev_id) + coverage = changesets_coverage.get(changeset["node"]) if coverage is None: logger.warn("No coverage found", changeset=changeset) continue # Calc totals for all files - covered = sum(c["lines_covered"] for c in coverage.values()) - added = sum(c["lines_added"] for c in coverage.values()) + covered = sum( + c["lines_covered"] + c["lines_unknown"] for c in coverage["paths"].values() + ) + added = sum(c["lines_added"] for c in coverage["paths"].values()) - if covered < 0.2 * added: + if covered < 0.4 * added: url = parse_revision_url(changeset["desc"]) content += f"* [{desc}]({url}): {covered} covered out of {added} added.\n" diff --git a/bot/code_coverage_bot/phabricator.py b/bot/code_coverage_bot/phabricator.py index 88e0f1b3c..53055786c 100644 --- a/bot/code_coverage_bot/phabricator.py +++ b/bot/code_coverage_bot/phabricator.py @@ -2,15 +2,21 @@ import os import re - +from typing import Any +from typing import Dict +from typing import Iterator +from typing import List +from typing import Optional +from typing import Tuple + +import hglib import structlog from libmozdata.phabricator import BuildState from libmozdata.phabricator import PhabricatorAPI from libmozdata.phabricator import PhabricatorRevisionNotFoundException -from code_coverage_bot import hgmo from code_coverage_bot.secrets import secrets -from code_coverage_tools import COVERAGE_EXTENSIONS +from code_coverage_bot import COVERAGE_EXTENSIONS logger = structlog.get_logger(__name__) @@ -34,9 +40,12 @@ def parse_revision_url(desc): class PhabricatorUploader(object): - def __init__(self, repo_dir, revision): + def __init__( + self, repo_dir: str, revision: str, warnings_enabled: Optional[bool] = True + ) -> None: self.repo_dir = repo_dir self.revision = revision + self.warnings_enabled = warnings_enabled # Read third party exclusion lists from repo third_parties = os.path.join( @@ -48,12 +57,36 @@ def __init__(self, repo_dir, revision): self.third_parties = [] logger.warn("Missing third party exclusion list", path=third_parties) - def _find_coverage(self, report, path): + def run_annotate( + self, hg: hglib.client, rev: str, path: str + ) -> Optional[Tuple[Tuple[str, int], ...]]: + args = hglib.util.cmdbuilder( + b"annotate", + os.path.join(self.repo_dir, path).encode("ascii"), + r=rev, + line_number=True, + changeset=True, + ) + try: + out = hg.rawcommand(args) + except hglib.error.CommandError as e: + if b"no such file in rev" not in e.err: + raise + + # The file was removed. + return None + + def _collect() -> Iterator[Tuple[str, int]]: + for line in out.splitlines(): + orig_changeset, orig_line, _ = line.split(b":", 2) + yield orig_changeset.decode("ascii"), int(orig_line) + + return tuple(_collect()) + + def _find_coverage(self, report: dict, path: str) -> Optional[List[int]]: """ Find coverage value in a covdir report """ - assert isinstance(report, dict) - parts = path.split("/") for part in filter(None, parts): if part not in report["children"]: @@ -65,8 +98,11 @@ def _find_coverage(self, report, path): "Path not found in report for unsupported extension", path=path ) else: - logger.warn("Path not found in report", path=path) - return + if self.warnings_enabled: + logger.warn("Path not found in report", path=path) + else: + logger.info("Path not found in report", path=path) + return None report = report["children"][part] return report["coverage"] @@ -81,34 +117,24 @@ def _build_coverage_map(self, annotate, coverage_record): # same line. coverage_map = {} - for data in annotate: - # The line number at the build changeset. - # Line numbers start from 1 in the annotate data, from 0 in the coverage data. - lineno = data["lineno"] - 1 - # The line number when it was introduced. - orig_line = data["targetline"] - # The changeset when it was introduced. - orig_changeset = data["node"] - - if lineno < len(coverage_record): - key = "{}-{}".format(orig_changeset, orig_line) - coverage_map[key] = coverage_record[lineno] + for lineno, (orig_changeset, orig_line) in enumerate(annotate): + key = (orig_changeset, orig_line) + # Assume lines outside the coverage record are uncoverable (that happens for the + # last few lines of a file, they are not considered by instrumentation). + coverage_map[key] = ( + coverage_record[lineno] if lineno < len(coverage_record) else -1 + ) return coverage_map def _apply_coverage_map(self, annotate, coverage_map): phab_coverage_data = "" - for data in annotate: - # The line number when it was introduced. - orig_line = data["targetline"] - # The changeset when it was introduced. - orig_changeset = data["node"] - - key = "{}-{}".format(orig_changeset, orig_line) + for orig_changeset, orig_line in annotate: + key = (orig_changeset, orig_line) if key in coverage_map: count = coverage_map[key] - if count is None: + if count == -1: # A non-executable line. phab_coverage_data += "N" elif count > 0: @@ -140,69 +166,107 @@ def is_supported_extension(self, path): return False return ext[1:] in COVERAGE_EXTENSIONS - def generate(self, report, changesets): + def generate( + self, hg: hglib.client, report: dict, changesets: List[dict] + ) -> Dict[str, Dict[str, Any]]: results = {} - with hgmo.HGMO(self.repo_dir) as hgmo_server: - for changeset in changesets: - # Retrieve the revision ID for this changeset. - revision_id = parse_revision_id(changeset["desc"]) - if revision_id is None: + # Skip merge changesets and backouts. + changesets = [ + changeset + for changeset in changesets + if not any( + text in changeset["desc"].split("\n")[0] + for text in ["r=merge", "a=merge"] + ) + and len(changeset["backsoutnodes"]) == 0 + ] + + all_paths = tuple( + set(sum((changeset["files"] for changeset in changesets), [])) + ) + + coverage_records_by_path = { + path: self._find_coverage(report, path) for path in all_paths + } + + # Retrieve the annotate data for the build changeset. + + build_annotate_by_path = { + path: self.run_annotate(hg, self.revision, path) + for path in all_paths + if coverage_records_by_path.get(path) is not None + } + + for changeset in changesets: + # Retrieve the revision ID for this changeset. + revision_id = parse_revision_id(changeset["desc"]) + + results[changeset["node"]] = { + "revision_id": revision_id, + "paths": {}, + } + + # For each file... + for path in changeset["files"]: + # Retrieve the coverage data. + coverage_record = coverage_records_by_path.get(path) + if coverage_record is None: continue - results[revision_id] = {} - - # For each file... - for path in changeset["files"]: - # Retrieve the coverage data. - coverage_record = self._find_coverage(report, path) - if coverage_record is None: - continue - - # Retrieve the annotate data for the build changeset. - build_annotate = hgmo_server.get_annotate(self.revision, path) - if build_annotate is None: - # This means the file has been removed by another changeset, but if this is the - # case, then we shouldn't have a coverage record and so we should have *continue*d - # earlier. - assert ( - False - ), "Failure to retrieve annotate data for the build changeset" - - # Build the coverage map from the annotate data and the coverage data of the build changeset. - coverage_map = self._build_coverage_map( - build_annotate, coverage_record - ) + # Retrieve the annotate data for the build changeset. + build_annotate = build_annotate_by_path.get(path) + if build_annotate is None: + # This means the file has been removed by another changeset, but if this is the + # case, then we shouldn't have a coverage record and so we should have *continue*d + # earlier. + assert ( + False + ), "Failure to retrieve annotate data for the build changeset" + + # Build the coverage map from the annotate data and the coverage data of the build changeset. + coverage_map = self._build_coverage_map(build_annotate, coverage_record) + + # Retrieve the annotate data for the changeset of interest. + annotate = self.run_annotate(hg, changeset["node"], path) + if annotate is None: + # This means the file has been removed by this changeset, and maybe was brought back by a following changeset. + continue - # Retrieve the annotate data for the changeset of interest. - annotate = hgmo_server.get_annotate(changeset["node"], path) - if annotate is None: - # This means the file has been removed by this changeset, and maybe was brought back by a following changeset. - continue - - # List lines added by this patch - lines_added = [ - line["lineno"] - for line in build_annotate - if line["node"] == changeset["node"] - ] - - # Apply the coverage map on the annotate data of the changeset of interest. - coverage = self._apply_coverage_map(annotate, coverage_map) - results[revision_id][path] = { - "lines_added": len(lines_added), - "lines_covered": sum( - coverage[line - 1] in ("C", "X", "N") - for line in lines_added - if line - 1 < len(coverage) - ), - "coverage": coverage, - } + # List lines added by this patch + lines_added = [ + lineno + for lineno, (annotate_changeset, _) in enumerate(annotate) + if annotate_changeset == changeset["node"][:12] + ] + + # Apply the coverage map on the annotate data of the changeset of interest. + coverage = self._apply_coverage_map(annotate, coverage_map) + + results[changeset["node"]]["paths"][path] = { + "lines_added": sum( + coverage[line] != "N" + for line in lines_added + if line < len(coverage) + ), + "lines_unknown": sum( + coverage[line] == "X" + for line in lines_added + if line < len(coverage) + ), + "lines_covered": sum( + coverage[line] == "C" + for line in lines_added + if line < len(coverage) + ), + "coverage": coverage, + } return results - def upload(self, report, changesets): - results = self.generate(report, changesets) + def upload(self, report: dict, changesets: List[dict]) -> Dict[str, Dict[str, Any]]: + with hglib.open(self.repo_dir) as hg: + results = self.generate(hg, report, changesets) if secrets[secrets.PHABRICATOR_ENABLED]: phabricator = PhabricatorAPI( @@ -211,9 +275,13 @@ def upload(self, report, changesets): else: phabricator = None - for rev_id, coverage in results.items(): + for result in results.values(): + rev_id = result["revision_id"] + if rev_id is None: + continue + # Only upload raw coverage data to Phabricator, not stats - coverage = {path: cov["coverage"] for path, cov in coverage.items()} + coverage = {path: cov["coverage"] for path, cov in result["paths"].items()} logger.info("{} coverage: {}".format(rev_id, coverage)) if not phabricator or not coverage: diff --git a/bot/code_coverage_bot/secrets.py b/bot/code_coverage_bot/secrets.py index 9f7154d5b..f3b657ed5 100644 --- a/bot/code_coverage_bot/secrets.py +++ b/bot/code_coverage_bot/secrets.py @@ -9,11 +9,11 @@ class Secrets(dict): EMAIL_ADDRESSES = "EMAIL_ADDRESSES" APP_CHANNEL = "APP_CHANNEL" - BACKEND_HOST = "BACKEND_HOST" PHABRICATOR_ENABLED = "PHABRICATOR_ENABLED" PHABRICATOR_URL = "PHABRICATOR_URL" PHABRICATOR_TOKEN = "PHABRICATOR_TOKEN" GOOGLE_CLOUD_STORAGE = "GOOGLE_CLOUD_STORAGE" + CHECK_JAVASCRIPT_FILES = "CHECK_JAVASCRIPT_FILES" def load(self, taskcluster_secret=None, local_secrets=None): taskcluster_config.load_secrets( @@ -21,7 +21,6 @@ def load(self, taskcluster_secret=None, local_secrets=None): prefixes=["common", "bot"], required=[ Secrets.APP_CHANNEL, - Secrets.BACKEND_HOST, Secrets.GOOGLE_CLOUD_STORAGE, Secrets.PHABRICATOR_ENABLED, Secrets.PHABRICATOR_URL, diff --git a/bot/code_coverage_bot/taskcluster.py b/bot/code_coverage_bot/taskcluster.py index 521261373..aeab6062e 100644 --- a/bot/code_coverage_bot/taskcluster.py +++ b/bot/code_coverage_bot/taskcluster.py @@ -1,18 +1,17 @@ # -*- coding: utf-8 -*- import os -import shutil -from zipfile import BadZipFile -from zipfile import is_zipfile -import requests import structlog import taskcluster -import tenacity from taskcluster.helper import TaskclusterConfig +from code_coverage_bot.utils import download_file + logger = structlog.getLogger(__name__) taskcluster_config = TaskclusterConfig("https://firefox-ci-tc.services.mozilla.com") +FINISHED_STATUSES = ["completed", "failed", "exception"] +ALL_STATUSES = FINISHED_STATUSES + ["unscheduled", "pending", "running"] NAME_PARTS_TO_SKIP = ("opt", "debug", "e10s", "1proc") @@ -60,9 +59,9 @@ def get_tasks_in_group(group_id): break -def download_artifact(artifact_path, task_id, artifact_name): +def download_artifact(artifact_path: str, task_id: str, artifact_name: str) -> None: if os.path.exists(artifact_path): - return artifact_path + return # Build artifact public url # Use un-authenticated Taskcluster client to avoid taskcluster-proxy rewrite issue @@ -71,23 +70,7 @@ def download_artifact(artifact_path, task_id, artifact_name): url = queue.buildUrl("getLatestArtifact", task_id, artifact_name) logger.debug("Downloading artifact", url=url) - @tenacity.retry( - reraise=True, - wait=tenacity.wait_exponential(multiplier=1, min=16, max=64), - stop=tenacity.stop_after_attempt(5), - ) - def perform_download(): - r = requests.get(url, stream=True) - r.raise_for_status() - - with open(artifact_path, "wb") as f: - r.raw.decode_content = True - shutil.copyfileobj(r.raw, f) - - if artifact_path.endswith(".zip") and not is_zipfile(artifact_path): - raise BadZipFile("File is not a zip file") - - perform_download() + download_file(url, artifact_path) def is_coverage_task(task): @@ -141,6 +124,10 @@ def get_suite(task): return "build" elif tags.get("kind") == "build-signing": return "build-signing" + elif tags.get("kind") == "source-test": + return "source-test" + elif tags.get("kind") == "fuzzing": + return "fuzzing" elif "suite" in extra: if isinstance(extra["suite"], dict): return extra["suite"]["name"] @@ -170,7 +157,7 @@ def get_platform(task): platform = "windows" if "mac" in name: assert platform is None - platform = "mac" + platform = "macosx" if not platform: raise Exception(f"Unknown platform for {task}") diff --git a/bot/code_coverage_bot/trigger_missing.py b/bot/code_coverage_bot/trigger_missing.py new file mode 100644 index 000000000..2fc8f1222 --- /dev/null +++ b/bot/code_coverage_bot/trigger_missing.py @@ -0,0 +1,136 @@ +# -*- 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 io +import os +from datetime import datetime +from datetime import timedelta + +import requests +import structlog +import zstandard +from taskcluster.utils import slugId + +from code_coverage_bot import config +from code_coverage_bot import hgmo +from code_coverage_bot import taskcluster +from code_coverage_bot import uploader +from code_coverage_bot import utils +from code_coverage_bot.secrets import secrets +from code_coverage_bot.taskcluster import taskcluster_config +from code_coverage_bot.gcp import get_bucket + +logger = structlog.get_logger(__name__) + + +MAXIMUM_TRIGGERS = 7 + + +def trigger_task(task_group_id: str, revision: str) -> None: + """ + Trigger a code coverage task to build covdir at a specified revision + """ + hooks = taskcluster_config.get_service("hooks") + hooks.triggerHook( + "project-relman", + f"code-coverage-repo-{secrets[secrets.APP_CHANNEL]}", + { + "REPOSITORY": config.MOZILLA_CENTRAL_REPOSITORY, + "REVISION": revision, + "coverageIngestionTaskGroupId": task_group_id, + "taskName": "covdir for {}".format(revision), + }, + ) + + +def trigger_missing(server_address: str, out_dir: str = ".") -> None: + triggered_revisions_path = os.path.join(out_dir, "triggered_revisions.zst") + + url = f"https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.relman.code-coverage.{secrets[secrets.APP_CHANNEL]}.crontrigger.latest/artifacts/public/triggered_revisions.zst" + r = requests.head(url, allow_redirects=True) + if r.status_code != 404: + utils.download_file(url, triggered_revisions_path) + + try: + dctx = zstandard.ZstdDecompressor() + with open(triggered_revisions_path, "rb") as zf: + with dctx.stream_reader(zf) as reader: + with io.TextIOWrapper(reader, encoding="ascii") as f: + triggered_revisions = set(rev for rev in f.read().splitlines()) + except FileNotFoundError: + triggered_revisions = set() + + # Get all mozilla-central revisions from the past year. + days = 365 if secrets[secrets.APP_CHANNEL] == "production" else 30 + a_year_ago = datetime.utcnow() - timedelta(days=days) + with hgmo.HGMO(server_address=server_address) as hgmo_server: + data = hgmo_server.get_pushes( + startDate=a_year_ago.strftime("%Y-%m-%d"), full=False, tipsonly=True + ) + + revisions = [ + (push_data["changesets"][0], int(push_data["date"])) + for push_data in data["pushes"].values() + ] + + logger.info(f"{len(revisions)} pushes in the past year") + + assert ( + secrets[secrets.GOOGLE_CLOUD_STORAGE] is not None + ), "Missing GOOGLE_CLOUD_STORAGE secret" + bucket = get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) + + missing_revisions = [] + for revision, timestamp in revisions: + # Skip revisions that have already been triggered. If they are still missing, + # it means there is a problem that is preventing us from ingesting them. + if revision in triggered_revisions: + continue + + # If the revision was already ingested, we don't need to trigger ingestion for it again. + if uploader.gcp_covdir_exists( + bucket, "mozilla-central", revision, "all", "all" + ): + triggered_revisions.add(revision) + continue + + missing_revisions.append((revision, timestamp)) + + logger.info(f"{len(missing_revisions)} missing pushes in the past year") + + yesterday = int(datetime.timestamp(datetime.utcnow() - timedelta(days=1))) + + task_group_id = slugId() + logger.info(f"Triggering tasks in the {task_group_id} group") + triggered = 0 + for revision, timestamp in reversed(missing_revisions): + # If it's older than yesterday, we assume the group finished. + # If it is newer than yesterday, we load the group and check if all tasks in it finished. + if timestamp > yesterday: + decision_task_id = taskcluster.get_decision_task( + "mozilla-central", revision + ) + if decision_task_id is None: + continue + + group = taskcluster.get_task_details(decision_task_id)["taskGroupId"] + if not all( + task["status"]["state"] in taskcluster.FINISHED_STATUSES + for task in taskcluster.get_tasks_in_group(group) + if taskcluster.is_coverage_task(task["task"]) + ): + continue + + trigger_task(task_group_id, revision) + triggered_revisions.add(revision) + triggered += 1 + if triggered == MAXIMUM_TRIGGERS: + break + + cctx = zstandard.ZstdCompressor(threads=-1) + with open(triggered_revisions_path, "wb") as zf: + with cctx.stream_writer(zf) as compressor: + with io.TextIOWrapper(compressor, encoding="ascii") as f: + f.write("\n".join(triggered_revisions)) diff --git a/bot/code_coverage_bot/uploader.py b/bot/code_coverage_bot/uploader.py index f2849ebba..ab428a69a 100644 --- a/bot/code_coverage_bot/uploader.py +++ b/bot/code_coverage_bot/uploader.py @@ -2,13 +2,13 @@ import itertools import os.path -import requests import structlog -import tenacity import zstandard as zstd +from google.cloud.storage.bucket import Bucket from code_coverage_bot.secrets import secrets -from code_coverage_tools.gcp import get_bucket +from code_coverage_bot.gcp import get_bucket +from code_coverage_bot import hgmo logger = structlog.get_logger(__name__) GCP_COVDIR_PATH = "{repository}/{revision}/{platform}:{suite}.json.zstd" @@ -27,7 +27,7 @@ def gcp(repository, revision, report, platform, suite): bucket = get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) # Compress report - compressor = zstd.ZstdCompressor() + compressor = zstd.ZstdCompressor(threads=-1) archive = compressor.compress(report) # Upload archive @@ -44,17 +44,15 @@ def gcp(repository, revision, report, platform, suite): logger.info("Uploaded {} on {}".format(path, bucket)) - # Trigger ingestion on backend - gcp_ingest(repository, revision, platform, suite) - return blob -def gcp_covdir_exists(repository, revision, platform, suite): +def gcp_covdir_exists( + bucket: Bucket, repository: str, revision: str, platform: str, suite: str +) -> bool: """ Check if a covdir report exists on the Google Cloud Storage bucket """ - bucket = get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) path = GCP_COVDIR_PATH.format( repository=repository, revision=revision, platform=platform, suite=suite ) @@ -62,47 +60,24 @@ def gcp_covdir_exists(repository, revision, platform, suite): return blob.exists() -@tenacity.retry( - stop=tenacity.stop_after_attempt(10), - wait=tenacity.wait_exponential(multiplier=1, min=16, max=64), - reraise=True, -) -def gcp_ingest(repository, revision, platform, suite): +def gcp_latest(repo_url): """ - The GCP report ingestion is triggered remotely on a backend - by making a simple HTTP request on the /v2/path endpoint - By specifying the exact new revision processed, the backend - will download automatically the new report. + List the latest reports ingested on the backend """ - params = {"repository": repository, "changeset": revision} - if platform: - params["platform"] = platform - if suite: - params["suite"] = suite - backend_host = secrets[secrets.BACKEND_HOST] - logger.info( - "Ingesting report on backend", - host=backend_host, - repository=repository, - revision=revision, - platform=platform, - suite=suite, - ) - resp = requests.get("{}/v2/path".format(backend_host), params=params) - resp.raise_for_status() - logger.info("Successfully ingested report on backend !") - return resp + assert ( + secrets[secrets.GOOGLE_CLOUD_STORAGE] is not None + ), "Missing GOOGLE_CLOUD_STORAGE secret" + bucket = get_bucket(secrets[secrets.GOOGLE_CLOUD_STORAGE]) + for push_id, push_data in hgmo.iter_pushes(server_address=repo_url): + changesets: list[str] = push_data.get("changesets", []) + if not changesets: + continue -def gcp_latest(repository): - """ - List the latest reports ingested on the backend - """ - params = {"repository": repository} - backend_host = secrets[secrets.BACKEND_HOST] - resp = requests.get("{}/v2/latest".format(backend_host), params=params) - resp.raise_for_status() - return resp.json() + if gcp_covdir_exists(bucket, "mozilla-central", changesets[-1], "all", "all"): + return changesets[-1] + + return None def covdir_paths(report): diff --git a/bot/code_coverage_bot/utils.py b/bot/code_coverage_bot/utils.py index 0bafa8ff4..d63c903bf 100644 --- a/bot/code_coverage_bot/utils.py +++ b/bot/code_coverage_bot/utils.py @@ -4,8 +4,12 @@ # file, You can obtain one at http://mozilla.org/MPL/2.0/. import concurrent.futures import subprocess +from zipfile import BadZipFile +from zipfile import is_zipfile +import requests import structlog +import tenacity log = structlog.get_logger(__name__) @@ -41,7 +45,7 @@ def run_check(command, **kwargs): ) _kwargs.update(kwargs) - log.debug("Running command", command=" ".join(command), kwargs=_kwargs) + log.info("Running command", command=" ".join(command), kwargs=_kwargs) with subprocess.Popen(command, **_kwargs) as proc: output, error = proc.communicate() @@ -55,9 +59,11 @@ def run_check(command, **kwargs): f"Command failed with code: {proc.returncode}", exit=proc.returncode, command=" ".join(command), - output=output, - error=error, + output=output.split("\n")[-1], + error=error.split("\n")[-1], ) + print(f"Output:\n{output}") + print(f"Error:\n{error}") raise Exception(f"`{command[0]}` failed with code: {proc.returncode}.") @@ -83,3 +89,23 @@ def __exit__(self, *args): future.cancel() raise e return super(ThreadPoolExecutorResult, self).__exit__(*args) + + +def download_file(url: str, path: str) -> None: + @tenacity.retry( + reraise=True, + wait=tenacity.wait_exponential(multiplier=1, min=16, max=64), + stop=tenacity.stop_after_attempt(5), + ) + def perform_download() -> None: + r = requests.get(url, stream=True) + r.raise_for_status() + + with open(path, "wb") as f: + for chunk in r.iter_content(chunk_size=1048576): + f.write(chunk) + + if path.endswith(".zip") and not is_zipfile(path): + raise BadZipFile("File is not a zip file") + + perform_download() diff --git a/bot/code_coverage_bot/zero_coverage.py b/bot/code_coverage_bot/zero_coverage.py index cd69dff8e..fb61d845d 100644 --- a/bot/code_coverage_bot/zero_coverage.py +++ b/bot/code_coverage_bot/zero_coverage.py @@ -13,7 +13,6 @@ class ZeroCov(object): - DATE_FORMAT = "%Y-%m-%d" def __init__(self, repo_dir): diff --git a/bot/requirements-dev.txt b/bot/requirements-dev.txt index 6623f43c8..95cd6806f 100644 --- a/bot/requirements-dev.txt +++ b/bot/requirements-dev.txt @@ -1,6 +1,6 @@ -json-e==4.1.0 -jsonschema==3.2.0 -pre-commit==2.6.0 -pytest==5.4.3 -pytest-responses==0.4.0 -responses==0.10.15 +json-e==4.8.2 +jsonschema==4.26.0 +pre-commit==4.6.0 +pytest==9.0.3 +pytest-responses==0.5.1 +responses==0.26.0 diff --git a/bot/requirements.txt b/bot/requirements.txt index 65d71f130..c93849f17 100644 --- a/bot/requirements.txt +++ b/bot/requirements.txt @@ -1,8 +1,10 @@ --e ../tools #egg=code-coverage-tools -google-cloud-storage==1.29.0 -libmozdata==0.1.68 -pytoml==0.1.21 -pytz==2020.1 -pyyaml==5.3.1 -tenacity==6.2.0 -zstandard==0.14.0 +google-cloud-storage==3.10.1 +libmozdata==0.2.12 +pytz==2026.2 +pyyaml==6.0.3 +sentry-sdk==2.60.0 +structlog==25.5.0 +taskcluster==100.1.0 +tenacity==9.1.4 +tqdm==4.67.3 +zstandard==0.25.0 diff --git a/bot/setup.py b/bot/setup.py index c0b6491a3..17528da69 100644 --- a/bot/setup.py +++ b/bot/setup.py @@ -47,6 +47,7 @@ def read_requirements(file_): license="MPL2", entry_points={ "console_scripts": [ + "code-coverage-crontrigger = code_coverage_bot.hooks.crontrigger:main", "code-coverage-cron = code_coverage_bot.hooks.cron:main", "code-coverage-repo = code_coverage_bot.hooks.repo:main", ] diff --git a/bot/taskcluster-hook-cron.json b/bot/taskcluster-hook-cron.json index 0c8c40e1f..256782ed3 100644 --- a/bot/taskcluster-hook-cron.json +++ b/bot/taskcluster-hook-cron.json @@ -1,81 +1,83 @@ { - "bindings": [], + "bindings": [], + "metadata": { + "description": "Automatically build code coverage reports", + "emailOnError": true, + "name": "Code coverage hook (CHANNEL)", + "owner": "mcastelluccio@mozilla.com" + }, + "schedule": ["0 0 0 * * *"], + "task": { + "created": { + "$fromNow": "0 seconds" + }, + "deadline": { + "$fromNow": "4 hours" + }, + "expires": { + "$fromNow": "1 month" + }, + "extra": {}, "metadata": { - "description": "Automatically build code coverage reports", - "emailOnError": true, - "name": "Code coverage hook (CHANNEL)", - "owner": "mcastelluccio@mozilla.com" + "description": "", + "name": "Code Coverage aggregation task - cron (CHANNEL)", + "owner": "mcastelluccio@mozilla.com", + "source": "https://github.com/mozilla/code-coverage" }, - "schedule": [ - "0 0 0 * * *" - ], - "task": { - "created": { - "$fromNow": "0 seconds" + "payload": { + "artifacts": { + "public/chunk_mapping.tar.xz": { + "path": "/chunk_mapping.tar.xz", + "type": "file" }, - "deadline": { - "$fromNow": "4 hours" + "public/per_chunk_mapping.tar.xz": { + "path": "/per_chunk_mapping.tar.xz", + "type": "file" }, - "expires": { - "$fromNow": "1 month" + "public/zero_coverage_report.json": { + "path": "/zero_coverage_report.json", + "type": "file" }, - "extra": {}, - "metadata": { - "description": "", - "name": "Code Coverage aggregation task - cron (CHANNEL)", - "owner": "mcastelluccio@mozilla.com", - "source": "https://github.com/mozilla/code-coverage" - }, - "payload": { - "artifacts": { - "public/chunk_mapping.tar.xz": { - "path": "/chunk_mapping.tar.xz", - "type": "file" - }, - "public/per_chunk_mapping.tar.xz": { - "path": "/per_chunk_mapping.tar.xz", - "type": "file" - }, - "public/zero_coverage_report.json": { - "path": "/zero_coverage_report.json", - "type": "file" - } - }, - "cache": { - "code-coverage-bot-CHANNEL": "/cache" - }, - "capabilities": {}, - "command": [ - "code-coverage-cron", - "--taskcluster-secret", - "project/relman/code-coverage/runtime-CHANNEL", - "--cache-root", - "/cache", - "--working-dir", - "/build" - ], - "env": {}, - "features": { - "taskclusterProxy": true - }, - "image": "mozilla/code-coverage:bot-REVISION", - "maxRunTime": 14400 - }, - "priority": "normal", - "provisionerId": "aws-provisioner-v1", - "retries": 5, - "routes": [], - "schedulerId": "-", - "scopes": [ - "secrets:get:project/relman/code-coverage/runtime-CHANNEL", - "docker-worker:cache:code-coverage-bot-CHANNEL", - "index:insert-task:project.relman.code-coverage.CHANNEL.cron.*" - ], - "tags": {}, - "workerType": "relman-svc-memory" + "public/commit_coverage.json.zst": { + "path": "/commit_coverage.json.zst", + "type": "file" + } + }, + "cache": { + "code-coverage-bot-CHANNEL": "/cache" + }, + "capabilities": {}, + "command": [ + "code-coverage-cron", + "--taskcluster-secret", + "project/relman/code-coverage/runtime-CHANNEL", + "--cache-root", + "/cache", + "--working-dir", + "/build" + ], + "env": {}, + "features": { + "taskclusterProxy": true + }, + "image": "mozilla/code-coverage:bot-REVISION", + "maxRunTime": 14400 }, - "triggerSchema": { - "additionalProperties": true, - "type": "object" - } + "priority": "normal", + "provisionerId": "aws-provisioner-v1", + "retries": 5, + "routes": [], + "schedulerId": "-", + "scopes": [ + "secrets:get:project/relman/code-coverage/runtime-CHANNEL", + "docker-worker:cache:code-coverage-bot-CHANNEL", + "index:insert-task:project.relman.code-coverage.CHANNEL.cron.*" + ], + "tags": {}, + "workerType": "relman-svc-memory" + }, + "triggerSchema": { + "additionalProperties": true, + "type": "object" + } } diff --git a/bot/taskcluster-hook-repo.json b/bot/taskcluster-hook-repo.json index 2016461ac..8898e0e36 100644 --- a/bot/taskcluster-hook-repo.json +++ b/bot/taskcluster-hook-repo.json @@ -1,94 +1,93 @@ { - "bindings": [], - "metadata": { - "description": "Automatically build code coverage reports", - "emailOnError": true, - "name": "Code coverage hook (CHANNEL)", - "owner": "mcastelluccio@mozilla.com" - }, - "task": { - "$merge": [ - { - "$if": "'taskGroupId' in payload", - "else": {}, - "then": { - "taskGroupId": { - "$eval": "payload.taskGroupId" - } - } - }, - { - "created": { - "$fromNow": "0 seconds" - }, - "deadline": { - "$fromNow": "4 hours" - }, - "expires": { - "$fromNow": "1 month" - }, - "extra": {}, - "metadata": { - "description": "", - "name": { - "$if": "'taskName' in payload", - "else": "Code Coverage aggregation task - repo (CHANNEL)", - "then": { - "$eval": "payload.taskName" - } - }, - "owner": "mcastelluccio@mozilla.com", - "source": "https://github.com/mozilla/code-coverage" - }, - "payload": { - - "artifacts": { - "public/code-coverage-report.json": { - "expires": {"$fromNow": "2 weeks"}, - "path": "/build/ccov-reports/all.all.json", - "type": "file" - } - }, - "cache": { - "code-coverage-bot-CHANNEL": "/cache" - }, - "capabilities": {}, - "command": [ - "code-coverage-repo", - "--taskcluster-secret", - "project/relman/code-coverage/runtime-CHANNEL", - "--cache-root", - "/cache", - "--working-dir", - "/build" - ], - "env": { - "$eval": "payload" - }, - "features": { - "taskclusterProxy": true - }, - "image": "mozilla/code-coverage:bot-REVISION", - "maxRunTime": 14400 - }, - "priority": "normal", - "provisionerId": "aws-provisioner-v1", - "retries": 5, - "routes": [], - "schedulerId": "-", - "scopes": [ - "secrets:get:project/relman/code-coverage/runtime-CHANNEL", - "notify:email:*", - "docker-worker:cache:code-coverage-bot-CHANNEL", - "index:insert-task:project.relman.code-coverage.CHANNEL.repo.*" - ], - "tags": {}, - "workerType": "relman-svc-memory" + "bindings": [], + "metadata": { + "description": "Automatically build code coverage reports", + "emailOnError": true, + "name": "Code coverage hook (CHANNEL)", + "owner": "mcastelluccio@mozilla.com" + }, + "task": { + "$merge": [ + { + "$if": "'taskGroupId' in payload", + "else": {}, + "then": { + "taskGroupId": { + "$eval": "payload.taskGroupId" + } + } + }, + { + "created": { + "$fromNow": "0 seconds" + }, + "deadline": { + "$fromNow": "4 hours" + }, + "expires": { + "$fromNow": "1 month" + }, + "extra": {}, + "metadata": { + "description": "", + "name": { + "$if": "'taskName' in payload", + "else": "Code Coverage aggregation task - repo (CHANNEL)", + "then": { + "$eval": "payload.taskName" } - ] - }, - "triggerSchema": { - "additionalProperties": true, - "type": "object" - } + }, + "owner": "mcastelluccio@mozilla.com", + "source": "https://github.com/mozilla/code-coverage" + }, + "payload": { + "artifacts": { + "public/code-coverage-report.json": { + "expires": { "$fromNow": "2 weeks" }, + "path": "/build/ccov-reports/all.all.json", + "type": "file" + } + }, + "cache": { + "code-coverage-bot-CHANNEL": "/cache" + }, + "capabilities": {}, + "command": [ + "code-coverage-repo", + "--taskcluster-secret", + "project/relman/code-coverage/runtime-CHANNEL", + "--cache-root", + "/cache", + "--working-dir", + "/build" + ], + "env": { + "$eval": "payload" + }, + "features": { + "taskclusterProxy": true + }, + "image": "mozilla/code-coverage:bot-REVISION", + "maxRunTime": 14400 + }, + "priority": "normal", + "provisionerId": "aws-provisioner-v1", + "retries": 5, + "routes": [], + "schedulerId": "-", + "scopes": [ + "secrets:get:project/relman/code-coverage/runtime-CHANNEL", + "notify:email:*", + "docker-worker:cache:code-coverage-bot-CHANNEL", + "index:insert-task:project.relman.code-coverage.CHANNEL.repo.*" + ], + "tags": {}, + "workerType": "relman-svc-memory" + } + ] + }, + "triggerSchema": { + "additionalProperties": true, + "type": "object" + } } diff --git a/bot/tests/conftest.py b/bot/tests/conftest.py index bd7568c98..1f8d6b4e3 100644 --- a/bot/tests/conftest.py +++ b/bot/tests/conftest.py @@ -8,6 +8,7 @@ import shutil import tempfile import zipfile +from configparser import ConfigParser from contextlib import contextmanager import hglib @@ -46,11 +47,8 @@ def commit(hg, diff_rev=None): return str(revision, "ascii") -def changesets(repo_dir, revision): - from code_coverage_bot import hgmo - - with hgmo.HGMO(repo_dir) as hgmo_server: - return hgmo_server.get_automation_relevance_changesets(revision) +def changesets(hgmo_server, revision): + return hgmo_server.get_automation_relevance_changesets(revision) def load_file(path): @@ -208,10 +206,12 @@ def mock_secrets(): secrets.update( { + "APP_CHANNEL": "production", "PHABRICATOR_ENABLED": True, "PHABRICATOR_URL": "http://phabricator.test/api/", "PHABRICATOR_TOKEN": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "EMAIL_ADDRESSES": ["admin@allizom.org"], + "GOOGLE_CLOUD_STORAGE": {}, } ) @@ -292,6 +292,17 @@ def mock_phabricator(): """ Mock phabricator authentication process """ + config_file = tempfile.NamedTemporaryFile() + with open(config_file.name, "w") as f: + custom_conf = ConfigParser() + custom_conf.add_section("User-Agent") + custom_conf.set("User-Agent", "name", "code-coverage-bot/1.0") + custom_conf.write(f) + f.seek(0) + + from libmozdata import config + + config.set_config(config.ConfigIni(config_file.name)) def _response(name): path = os.path.join(FIXTURES_DIR, f"phabricator_{name}.json") @@ -380,9 +391,9 @@ def covdir_report(codecov): out = {} for cov in codecov["source_files"]: assert "/" not in cov["name"] - coverage = cov["coverage"] + coverage = [c if c is not None else -1 for c in cov["coverage"]] total = len(coverage) - covered = sum(line is not None and line > 0 for line in coverage) + covered = sum(line > 0 for line in coverage) out[cov["name"]] = { "children": {}, "name": cov["name"], diff --git a/bot/tests/fixtures/fuzzing-grizzly-windows64-ccov.json b/bot/tests/fixtures/fuzzing-grizzly-windows64-ccov.json new file mode 100644 index 000000000..e124ff18c --- /dev/null +++ b/bot/tests/fixtures/fuzzing-grizzly-windows64-ccov.json @@ -0,0 +1,109 @@ +{ + "provisionerId": "gecko-t", + "workerType": "win11-64-2009-source", + "taskQueueId": "gecko-t/win11-64-2009-source", + "schedulerId": "gecko-level-3", + "projectId": "none", + "taskGroupId": "VJjEns0FQU26bhsggfboIQ", + "dependencies": [ + "DH-mnrnVRK2GBdWNSC73Lg", + "eiC54KPpTQ6bGQGR82lZZw" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.7aa82d7563335ed4da92818c597c9ddea8aac4f4" + ], + "priority": "medium", + "retries": 5, + "created": "2024-07-17T15:34:47.027Z", + "deadline": "2024-07-18T15:34:47.027Z", + "expires": "2024-10-15T15:34:47.027Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "secrets:get:project/taskcluster/gecko/hgmointernal", + "generic-worker:cache:gecko-level-3-checkouts" + ], + "payload": { + "env": { + "GECKO_PATH": "./build/src", + "MOZ_FETCHES": "[{\"artifact\": \"public/build/python.tar.zst\", \"extract\": true, \"task\": \"eiC54KPpTQ6bGQGR82lZZw\"}, {\"artifact\": \"public/build/target.zip\", \"extract\": true, \"task\": \"DH-mnrnVRK2GBdWNSC73Lg\"}]", + "HG_STORE_PATH": "y:/hg-shared", + "MOZ_SCM_LEVEL": "3", + "GECKO_HEAD_REV": "7aa82d7563335ed4da92818c597c9ddea8aac4f4", + "MOZ_AUTOMATION": "1", + "MOZ_FETCHES_DIR": "fetches", + "MOZ_PYTHON_HOME": "fetches/python", + "SCCACHE_DISABLE": "1", + "GECKO_BINARY_PATH": "$MOZ_FETCHES_DIR/firefox/firefox.exe", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central" + }, + "mounts": [ + { + "cacheName": "gecko-level-3-checkouts", + "directory": "./build" + }, + { + "file": "./run-task", + "content": { + "url": "http://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VJjEns0FQU26bhsggfboIQ/artifacts/public/run-task" + } + }, + { + "file": "./fetch-content", + "content": { + "url": "http://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VJjEns0FQU26bhsggfboIQ/artifacts/public/fetch-content" + } + }, + { + "file": "./robustcheckout.py", + "content": { + "url": "http://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VJjEns0FQU26bhsggfboIQ/artifacts/public/robustcheckout.py" + } + } + ], + "command": [ + "C:/mozilla-build/python3/python3.exe run-task --gecko-checkout=./build/src --task-cwd build/src -- bash -cx \"python3 ./mach python-test --subsuite fuzzing --run-slow\"" + ], + "maxRunTime": 1800, + "onExitStatus": { + "retry": [ + 1073807364, + 3221225786, + 137 + ] + } + }, + "metadata": { + "name": "fuzzing-grizzly-windows64-ccov", + "owner": "csabou@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/7aa82d7563335ed4da92818c597c9ddea8aac4f4/taskcluster/kinds/fuzzing", + "description": "Python Fuzzing Smoke Tests ([Treeherder job](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=7aa82d7563335ed4da92818c597c9ddea8aac4f4&selectedTaskRun=EySSqDwdTIOG2trg4W8sCQ))" + }, + "tags": { + "os": "windows", + "kind": "fuzzing", + "label": "fuzzing-grizzly-windows64-ccov", + "retrigger": "false", + "createdForUser": "csabou@mozilla.com", + "worker-implementation": "generic-worker" + }, + "extra": { + "index": { + "rank": 0 + }, + "parent": "VJjEns0FQU26bhsggfboIQ", + "treeherder": { + "tier": 3, + "symbol": "fuzzing-python", + "jobKind": "test", + "machine": { + "platform": "windows2012-64" + }, + "collection": { + "ccov": true + } + }, + "treeherder-platform": "windows2012-64/ccov" + } + } \ No newline at end of file diff --git a/bot/tests/fixtures/source-test-node-newtab-unit-tests-ccov.json b/bot/tests/fixtures/source-test-node-newtab-unit-tests-ccov.json new file mode 100644 index 000000000..5c30b1bed --- /dev/null +++ b/bot/tests/fixtures/source-test-node-newtab-unit-tests-ccov.json @@ -0,0 +1,116 @@ +{ + "provisionerId": "gecko-t", + "workerType": "t-linux-xlarge-source", + "taskQueueId": "gecko-t/t-linux-xlarge-source", + "schedulerId": "gecko-level-1", + "projectId": "none", + "taskGroupId": "QrXM_S09ScGeYd7VH4-qUg", + "dependencies": [ + "Ojg_ahyfQs-GQooZk4pKOA", + "XFg6cRShStOTA2Xl4p8-aA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.try.cfeddbeafb47a71ca48f913147e71610c9e58c70" + ], + "priority": "very-low", + "retries": 5, + "created": "2022-01-11T01:12:21.332Z", + "deadline": "2022-01-12T01:12:21.332Z", + "expires": "2022-02-08T01:12:21.332Z", + "scopes": [ + "secrets:get:project/taskcluster/gecko/hgfingerprint", + "secrets:get:project/taskcluster/gecko/hgmointernal", + "docker-worker:feature:allowPtrace", + "docker-worker:cache:gecko-level-1-checkouts-hg58-v3-35e6d2147228a7dd8319" + ], + "payload": { + "env": { + "GECKO_PATH": "/builds/worker/checkouts/gecko", + "TRY_SELECTOR": "fuzzy", + "HG_STORE_PATH": "/builds/worker/checkouts/hg-store", + "MOZ_SCM_LEVEL": "1", + "GECKO_HEAD_REV": "cfeddbeafb47a71ca48f913147e71610c9e58c70", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "TASKCLUSTER_CACHES": "/builds/worker/checkouts", + "TASKCLUSTER_VOLUMES": "/builds/worker/.cache;/builds/worker/checkouts;/builds/worker/tooltool-cache;/builds/worker/workspace", + "GECKO_BASE_REPOSITORY": "https://hg.mozilla.org/mozilla-unified", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/try", + "TASKCLUSTER_UNTRUSTED_CACHES": "1" + }, + "cache": { + "gecko-level-1-checkouts-hg58-v3-35e6d2147228a7dd8319": "/builds/worker/checkouts" + }, + "image": { + "path": "public/image.tar.zst", + "type": "task-image", + "taskId": "XFg6cRShStOTA2Xl4p8-aA" + }, + "command": [ + "/builds/worker/bin/run-task", + "--gecko-checkout=/builds/worker/checkouts/gecko", + "--fetch-hgfingerprint", + "--task-cwd", + "/builds/worker/checkouts/gecko", + "--", + "bash", + "-cx", + "cd /builds/worker/checkouts/gecko/browser/components/newtab && npm install && node bin/try-runner.js\n" + ], + "features": { + "allowPtrace": true, + "taskclusterProxy": true + }, + "artifacts": { + "public/code-coverage-grcov.zip": { + "path": "/builds/worker/checkouts/gecko/browser/components/newtab/code-coverage-grcov.zip", + "type": "file", + "expires": "2022-02-08T01:12:21.332Z" + } + }, + "maxRunTime": 1800, + "onExitStatus": { + "retry": [ + 72 + ], + "purgeCaches": [ + 72 + ] + } + }, + "metadata": { + "name": "source-test-node-newtab-unit-tests-ccov", + "owner": "dmosedale@mozilla.com", + "source": "https://hg.mozilla.org/try/file/cfeddbeafb47a71ca48f913147e71610c9e58c70/taskcluster/ci/source-test", + "description": "newtab unit tests code coverage ([Treeherder job](https://treeherder.mozilla.org/#/jobs?repo=try&revision=cfeddbeafb47a71ca48f913147e71610c9e58c70&selectedTaskRun=JWSwQvELR6C6U2mz66BCfA))" + }, + "tags": { + "os": "linux", + "kind": "source-test", + "label": "source-test-node-newtab-unit-tests-ccov", + "retrigger": "true", + "createdForUser": "dmosedale@mozilla.com", + "worker-implementation": "docker-worker" + }, + "extra": { + "index": { + "rank": 1641863325 + }, + "parent": "QrXM_S09ScGeYd7VH4-qUg", + "treeherder": { + "tier": 1, + "symbol": "newtab-ccov", + "jobKind": "test", + "machine": { + "platform": "linux1804-64" + }, + "groupName": "Node tests", + "collection": { + "opt": true + }, + "groupSymbol": "node" + }, + "treeherder-platform": "linux1804-64/opt" + } +} \ No newline at end of file diff --git a/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-cppunit.json b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-cppunit.json new file mode 100644 index 000000000..d4f2abb66 --- /dev/null +++ b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-cppunit.json @@ -0,0 +1,97 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "Mu6w3n-dS9GOfrv6wGOtvg", + "dependencies": [ + "Db0nxP-CRTKA7ak9LCYucA", + "brd6yPH_TEegeE8bjBLsxQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.e31357c7759379d2279b6883cb09c91997bfaa5d.35772", + "coalesce.v1.mozilla-central.a08cf6d9fc36535ab7db" + ], + "priority": "medium", + "retries": 5, + "created": "2019-03-28T17:39:21.822Z", + "deadline": "2019-03-29T17:39:21.822Z", + "expires": "2020-03-27T17:39:21.822Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.a08cf6d9fc36535ab7db", + "maxRunTime": 3600, + "artifacts": [ + { + "path": "logs", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "type": "directory", + "name": "public/test_info" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --code-coverage --installer-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Db0nxP-CRTKA7ak9LCYucA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Db0nxP-CRTKA7ak9LCYucA/artifacts/public/build/target.test_packages.json --download-symbols true --enable-webrender --cppunittest-suite=cppunittest --code-coverage" + ], + "env": { + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "e31357c7759379d2279b6883cb09c91997bfaa5d", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_FETCHES": "[{\"artifact\": \"public/build/grcov.tar.bz2\", \"extract\": true, \"task\": \"brd6yPH_TEegeE8bjBLsxQ\"}]", + "MOZ_FETCHES_DIR": "fetches", + "MOZ_AUTOMATION": "1" + }, + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Db0nxP-CRTKA7ak9LCYucA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "opoprus@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/e31357c7759379d2279b6883cb09c91997bfaa5d/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=e31357c7759379d2279b6883cb09c91997bfaa5d))", + "name": "test-windows10-64-ccov-qr/debug-cppunit" + }, + "tags": { + "os": "windows", + "createdForUser": "opoprus@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-ccov-qr/debug-cppunit" + }, + "extra": { + "index": { + "rank": 0 + }, + "parent": "Mu6w3n-dS9GOfrv6wGOtvg", + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "windows10-64-ccov-qr" + }, + "tier": 2, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "treeherder-platform": "windows10-64-ccov-qr/debug" + } +} diff --git a/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-1.json b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-1.json new file mode 100644 index 000000000..0dc5ac273 --- /dev/null +++ b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-1.json @@ -0,0 +1,100 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "Mu6w3n-dS9GOfrv6wGOtvg", + "dependencies": [ + "Db0nxP-CRTKA7ak9LCYucA", + "brd6yPH_TEegeE8bjBLsxQ" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.e31357c7759379d2279b6883cb09c91997bfaa5d.35772", + "coalesce.v1.mozilla-central.f3031b7eecbe9114a96f" + ], + "priority": "medium", + "retries": 5, + "created": "2019-03-28T17:39:26.586Z", + "deadline": "2019-03-29T17:39:26.586Z", + "expires": "2020-03-27T17:39:26.586Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.f3031b7eecbe9114a96f", + "maxRunTime": 5400, + "artifacts": [ + { + "path": "logs", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "type": "directory", + "name": "public/test_info" + } + ], + "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 --installer-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Db0nxP-CRTKA7ak9LCYucA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Db0nxP-CRTKA7ak9LCYucA/artifacts/public/build/target.test_packages.json --download-symbols true --enable-webrender --mochitest-suite=plain-chunked --code-coverage --e10s --total-chunk=10 --this-chunk=1" + ], + "env": { + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "e31357c7759379d2279b6883cb09c91997bfaa5d", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_FETCHES": "[{\"artifact\": \"public/build/grcov.tar.bz2\", \"extract\": true, \"task\": \"brd6yPH_TEegeE8bjBLsxQ\"}]", + "MOZ_FETCHES_DIR": "fetches", + "MOZ_AUTOMATION": "1" + }, + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "Db0nxP-CRTKA7ak9LCYucA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "opoprus@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/e31357c7759379d2279b6883cb09c91997bfaa5d/taskcluster/ci/test", + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=e31357c7759379d2279b6883cb09c91997bfaa5d))", + "name": "test-windows10-64-ccov-qr/debug-mochitest-e10s-1" + }, + "tags": { + "kind": "test", + "worker-implementation": "generic-worker", + "createdForUser": "opoprus@mozilla.com", + "label": "test-windows10-64-ccov-qr/debug-mochitest-e10s-1", + "test-type": "mochitest", + "os": "windows" + }, + "extra": { + "index": { + "rank": 0 + }, + "parent": "Mu6w3n-dS9GOfrv6wGOtvg", + "chunks": { + "current": 1, + "total": 10 + }, + "suite": { + "flavor": "plain-chunked", + "name": "mochitest" + }, + "treeherder": { + "jobKind": "test", + "groupSymbol": "M-e10s", + "collection": { + "debug": true + }, + "machine": { + "platform": "windows10-64-ccov-qr" + }, + "groupName": "Mochitests with e10s", + "tier": 2, + "symbol": "1" + }, + "treeherder-platform": "windows10-64-ccov-qr/debug" + } +} diff --git a/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-e10s-7.json b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-e10s-7.json new file mode 100644 index 000000000..7b5c0c95b --- /dev/null +++ b/bot/tests/fixtures/test-windows10-64-ccov-qr/debug-mochitest-e10s-7.json @@ -0,0 +1,118 @@ +{ + "created": "2019-08-07T21:54:53.928Z", + "deadline": "2019-08-08T21:54:53.928Z", + "dependencies": [ + "bVpuwUYmQCqjPY-Ynu1YZQ", + "eA-zkasdQCmua27DPfzcZQ" + ], + "expires": "2020-08-06T21:54:53.928Z", + "extra": { + "chunks": { + "current": 7, + "total": 10 + }, + "index": { + "rank": 0 + }, + "parent": "PUZr6C8WR9Cmw3LeL9qotw", + "suite": "mochitest-plain-chunked", + "treeherder": { + "collection": { + "debug": true + }, + "groupName": "Mochitests", + "groupSymbol": "M", + "jobKind": "test", + "machine": { + "platform": "windows10-64-ccov-qr" + }, + "symbol": "7", + "tier": 2 + }, + "treeherder-platform": "windows10-64-ccov-qr/debug" + }, + "metadata": { + "description": "Mochitest plain run ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=3a71baea939144b4ec37805a932f0250c74986b1))", + "name": "test-windows10-64-ccov-qr/debug-mochitest-e10s-7", + "owner": "shindli@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/3a71baea939144b4ec37805a932f0250c74986b1/taskcluster/ci/test" + }, + "payload": { + "artifacts": [ + { + "name": "public/logs", + "path": "logs", + "type": "directory" + }, + { + "name": "public/test_info", + "path": "build/blobber_upload_dir", + "type": "directory" + } + ], + "command": [ + "C:/mozilla-build/python3/python3.exe run-task -- c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_unittest.py --mochitest-suite=mochitest-plain-chunked --code-coverage --setpref=media.peerconnection.mtransport_process=false --setpref=network.process.enabled=false --enable-webrender --download-symbols true --mochitest-suite=mochitest-plain-chunked --code-coverage --setpref=media.peerconnection.mtransport_process=false --setpref=network.process.enabled=false --total-chunk=10 --this-chunk=7" + ], + "env": { + "EXTRA_MOZHARNESS_CONFIG": "{\"test_packages_url\": \"https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eA-zkasdQCmua27DPfzcZQ/artifacts/public/build/target.test_packages.json\", \"installer_url\": \"https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eA-zkasdQCmua27DPfzcZQ/artifacts/public/build/target.zip\"}", + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "GECKO_HEAD_REV": "3a71baea939144b4ec37805a932f0250c74986b1", + "MOZ_AUTOMATION": "1", + "MOZ_FETCHES": "[{\"artifact\": \"public/build/grcov.tar.bz2\", \"extract\": true, \"task\": \"bVpuwUYmQCqjPY-Ynu1YZQ\"}]", + "MOZ_FETCHES_DIR": "fetches", + "MOZ_SCM_LEVEL": "3", + "SCCACHE_DISABLE": "1" + }, + "maxRunTime": 5400, + "mounts": [ + { + "content": { + "artifact": "public/build/mozharness.zip", + "taskId": "eA-zkasdQCmua27DPfzcZQ" + }, + "directory": ".", + "format": "zip" + }, + { + "content": { + "url": "https://hg.mozilla.org/mozilla-central/raw-file/3a71baea939144b4ec37805a932f0250c74986b1/taskcluster/scripts/run-task" + }, + "file": "./run-task" + }, + { + "content": { + "url": "https://hg.mozilla.org/mozilla-central/raw-file/3a71baea939144b4ec37805a932f0250c74986b1/taskcluster/scripts/misc/fetch-content" + }, + "file": "./fetch-content" + } + ], + "onExitStatus": { + "retry": [ + 1073807364, + 3221225786 + ] + }, + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.7b8ad30082b7aa4bcac6" + }, + "priority": "medium", + "provisionerId": "aws-provisioner-v1", + "requires": "all-completed", + "retries": 5, + "routes": [ + "tc-treeherder.v2.mozilla-central.3a71baea939144b4ec37805a932f0250c74986b1.36406", + "coalesce.v1.mozilla-central.7b8ad30082b7aa4bcac6" + ], + "schedulerId": "gecko-level-3", + "scopes": [], + "tags": { + "createdForUser": "shindli@mozilla.com", + "kind": "test", + "label": "test-windows10-64-ccov-qr/debug-mochitest-e10s-7", + "os": "windows", + "retrigger": "true", + "test-type": "mochitest", + "worker-implementation": "generic-worker" + }, + "taskGroupId": "PUZr6C8WR9Cmw3LeL9qotw", + "workerType": "gecko-t-win10-64" +} diff --git a/bot/tests/fixtures/test-windows10-64-qr/debug-cppunit.json b/bot/tests/fixtures/test-windows10-64-qr/debug-cppunit.json new file mode 100644 index 000000000..3811e023b --- /dev/null +++ b/bot/tests/fixtures/test-windows10-64-qr/debug-cppunit.json @@ -0,0 +1,94 @@ +{ + "provisionerId": "aws-provisioner-v1", + "workerType": "gecko-t-win10-64", + "schedulerId": "gecko-level-3", + "taskGroupId": "Mu6w3n-dS9GOfrv6wGOtvg", + "dependencies": [ + "W7r-_k6BRti6V69f6PVFQA" + ], + "requires": "all-completed", + "routes": [ + "tc-treeherder.v2.mozilla-central.e31357c7759379d2279b6883cb09c91997bfaa5d.35772", + "coalesce.v1.mozilla-central.e97a7cee04fa0f3b4f7d" + ], + "priority": "medium", + "retries": 5, + "created": "2019-03-28T17:40:03.103Z", + "deadline": "2019-03-29T17:40:03.103Z", + "expires": "2020-03-27T17:40:03.103Z", + "scopes": [], + "payload": { + "supersederUrl": "https://coalesce.mozilla-releng.net/v1/list/3600/5/mozilla-central.e97a7cee04fa0f3b4f7d", + "maxRunTime": 3600, + "artifacts": [ + { + "path": "logs", + "type": "directory", + "name": "public/logs" + }, + { + "path": "build/blobber_upload_dir", + "type": "directory", + "name": "public/test_info" + } + ], + "command": [ + "c:\\mozilla-build\\python\\python.exe -u mozharness\\scripts\\desktop_unittest.py --cfg mozharness\\configs\\unittests\\win_taskcluster_unittest.py --cppunittest-suite=cppunittest --installer-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/W7r-_k6BRti6V69f6PVFQA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/W7r-_k6BRti6V69f6PVFQA/artifacts/public/build/target.test_packages.json --enable-webrender --download-symbols true --cppunittest-suite=cppunittest" + ], + "env": { + "GECKO_HEAD_REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "MOZ_AUTOMATION": "1", + "SCCACHE_DISABLE": "1", + "GECKO_HEAD_REV": "e31357c7759379d2279b6883cb09c91997bfaa5d" + }, + "mounts": [ + { + "directory": ".", + "content": { + "taskId": "W7r-_k6BRti6V69f6PVFQA", + "artifact": "public/build/mozharness.zip" + }, + "format": "zip" + } + ] + }, + "metadata": { + "owner": "opoprus@mozilla.com", + "source": "https://hg.mozilla.org/mozilla-central/file/e31357c7759379d2279b6883cb09c91997bfaa5d/taskcluster/ci/test", + "description": "CPP Unit Tests ([Treeherder push](https://treeherder.mozilla.org/#/jobs?repo=mozilla-central&revision=e31357c7759379d2279b6883cb09c91997bfaa5d))", + "name": "test-windows10-64-qr/debug-cppunit" + }, + "tags": { + "os": "windows", + "createdForUser": "opoprus@mozilla.com", + "worker-implementation": "generic-worker", + "kind": "test", + "label": "test-windows10-64-qr/debug-cppunit" + }, + "extra": { + "index": { + "rank": 1553794301 + }, + "parent": "Mu6w3n-dS9GOfrv6wGOtvg", + "chunks": { + "current": 1, + "total": 1 + }, + "suite": { + "flavor": "cppunittest", + "name": "cppunittest" + }, + "treeherder": { + "machine": { + "platform": "windows10-64-qr" + }, + "tier": 1, + "symbol": "Cpp", + "jobKind": "test", + "collection": { + "debug": true + } + }, + "treeherder-platform": "windows10-64-qr/debug" + } +} diff --git a/bot/tests/test__system.py b/bot/tests/test__system.py index 46ec612ce..19392a586 100644 --- a/bot/tests/test__system.py +++ b/bot/tests/test__system.py @@ -13,7 +13,7 @@ def test_mercurial(): # Check mercurial version output = run_check(["hg", "version", "-T", "{ver}"]) - assert output.decode("utf-8").startswith("5.3") + assert output.decode("utf-8").startswith("7.2") # Check needed extensions output = run_check(["hg", "version", "-T", "{extensions}"]) diff --git a/bot/tests/test_chunk_mapping.py b/bot/tests/test_chunk_mapping.py index 979beb87e..88affe14e 100644 --- a/bot/tests/test_chunk_mapping.py +++ b/bot/tests/test_chunk_mapping.py @@ -117,14 +117,14 @@ def request_callback(request): data = {} elif requested_suite == "marionette": regexp = payload["where"]["and"][3]["regexp"]["run.key"] - if regexp == ".*-linux.*-ccov/.*": + if regexp == ".*-linux.*-ccov.*/.*": data = { "result.test": ["marionette-test1"], "run.key": [ "test-linux64-ccov/opt-marionette-headless-e10s" ], } - elif regexp == ".*-windows.*-ccov/.*": + elif regexp == ".*-windows.*-ccov.*/.*": data = { "result.test": ["marionette-test2"], "run.key": [ diff --git a/bot/tests/test_commit_coverage.py b/bot/tests/test_commit_coverage.py new file mode 100644 index 000000000..7661fa178 --- /dev/null +++ b/bot/tests/test_commit_coverage.py @@ -0,0 +1,407 @@ +# -*- coding: utf-8 -*- +import json +import os +import threading +from contextlib import contextmanager + +import zstandard + +from code_coverage_bot import commit_coverage +from code_coverage_bot import hgmo +from conftest import add_file +from conftest import commit +from conftest import copy_pushlog_database +from conftest import covdir_report + + +def test_generate_from_scratch( + monkeypatch, tmpdir, mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_repo +): + tmp_path = tmpdir.strpath + + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n") + revision1 = commit(hg, 1) + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + report = covdir_report( + { + "source_files": [ + {"name": "file", "coverage": [None, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]} + ] + } + ) + + uploaded_data = None + patch_calls = 0 + + class Blob: + def exists(self): + return False + + def upload_from_string(self, val): + nonlocal uploaded_data + uploaded_data = val + + def download_as_bytes(self, raw_download=False): + assert False + + def patch(self): + nonlocal patch_calls + assert self.content_type == "application/json" + assert self.content_encoding == "zstd" + patch_calls += 1 + + class Bucket: + def blob(self, path): + assert path == "commit_coverage.json.zst" + return Blob() + + myBucket = Bucket() + + def get_bucket(acc): + return myBucket + + monkeypatch.setattr(commit_coverage, "get_bucket", get_bucket) + + def list_reports(bucket, repo): + assert bucket == myBucket + assert repo == "mozilla-central" + yield revision2, "linux", "all" + yield revision2, "all", "xpcshell" + yield revision2, "all", "all" + + monkeypatch.setattr(commit_coverage, "list_reports", list_reports) + + def download_report(report_dir, bucket, report_name): + os.makedirs( + os.path.join(tmp_path, report_dir, "mozilla-central", revision2), + exist_ok=True, + ) + with open( + os.path.join( + tmp_path, report_dir, "mozilla-central", revision2, "all:all.json" + ), + "w", + ) as f: + json.dump(report, f) + + return True + + monkeypatch.setattr(commit_coverage, "download_report", download_report) + + with hgmo.HGMO(repo_dir=local) as hgmo_server: + commit_coverage.generate(hgmo_server.server_address, local, out_dir=tmp_path) + + assert patch_calls == 1 + + dctx = zstandard.ZstdDecompressor() + with open(os.path.join(tmp_path, "commit_coverage.json.zst"), "rb") as zf: + with dctx.stream_reader(zf) as reader: + result = json.load(reader) + + assert result == json.loads(dctx.decompress(uploaded_data)) + assert result == { + revision1: { + "added": 3, + "covered": 2, + "unknown": 0, + }, + revision2: { + "added": 6, + "covered": 0, + "unknown": 0, + }, + } + + +def test_generate_two_pushes( + monkeypatch, tmpdir, mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_repo +): + tmp_path = tmpdir.strpath + + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file1", "1\n2\n3\n4\n") + revision1 = commit(hg, 1) + + add_file(hg, local, "file1", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file2", "1\n2\n3\n4\n") + revision3 = commit(hg, 1) + + add_file(hg, local, "file2", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision4 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + report1 = covdir_report( + { + "source_files": [ + {"name": "file1", "coverage": [None, 1, 1, 0, 0, 0, 0, 0, 0, 0]} + ] + } + ) + + report2 = covdir_report( + { + "source_files": [ + {"name": "file1", "coverage": [None, 1, 1, 0, 0, 0, 0, 0, 0, 0]}, + {"name": "file2", "coverage": [None, 0, 1, 0, 0, 0, 0, 0, 1, 1]}, + ] + } + ) + + uploaded_data = None + patch_calls = 0 + + class Blob: + def exists(self): + return False + + def upload_from_string(self, val): + nonlocal uploaded_data + uploaded_data = val + + def download_as_bytes(self, raw_download=False): + assert False + + def patch(self): + nonlocal patch_calls + assert self.content_type == "application/json" + assert self.content_encoding == "zstd" + patch_calls += 1 + + class Bucket: + def blob(self, path): + assert path == "commit_coverage.json.zst" + return Blob() + + myBucket = Bucket() + + def get_bucket(acc): + return myBucket + + monkeypatch.setattr(commit_coverage, "get_bucket", get_bucket) + + def list_reports(bucket, repo): + assert bucket == myBucket + assert repo == "mozilla-central" + yield revision2, "linux", "all" + yield revision2, "all", "xpcshell" + yield revision2, "all", "all" + yield revision4, "all", "all" + + monkeypatch.setattr(commit_coverage, "list_reports", list_reports) + + def download_report(report_dir, bucket, report_name): + if revision2 in report_name: + os.makedirs( + os.path.join(tmp_path, report_dir, "mozilla-central", revision2), + exist_ok=True, + ) + with open( + os.path.join( + tmp_path, report_dir, "mozilla-central", revision2, "all:all.json" + ), + "w", + ) as f: + json.dump(report1, f) + + if revision4 in report_name: + os.makedirs( + os.path.join(tmp_path, report_dir, "mozilla-central", revision4), + exist_ok=True, + ) + with open( + os.path.join( + tmp_path, report_dir, "mozilla-central", revision4, "all:all.json" + ), + "w", + ) as f: + json.dump(report2, f) + + return True + + monkeypatch.setattr(commit_coverage, "download_report", download_report) + + with hgmo.HGMO(repo_dir=local) as hgmo_server: + lock = threading.Lock() + + class HGMOMock: + def get_automation_relevance_changesets(self, changeset): + with lock: + return hgmo_server.get_automation_relevance_changesets(changeset) + + @contextmanager + def HGMO(server_address=None, repo_dir=None): + assert server_address == hgmo_server.server_address + yield HGMOMock() + + monkeypatch.setattr(commit_coverage, "hgmo", HGMOMock) + + commit_coverage.generate(hgmo_server.server_address, local, out_dir=tmp_path) + + assert patch_calls == 1 + + dctx = zstandard.ZstdDecompressor() + with open(os.path.join(tmp_path, "commit_coverage.json.zst"), "rb") as zf: + with dctx.stream_reader(zf) as reader: + result = json.load(reader) + + assert result == json.loads(dctx.decompress(uploaded_data)) + assert result == { + revision1: { + "added": 3, + "covered": 2, + "unknown": 0, + }, + revision2: { + "added": 6, + "covered": 0, + "unknown": 0, + }, + revision3: { + "added": 3, + "covered": 1, + "unknown": 0, + }, + revision4: { + "added": 6, + "covered": 2, + "unknown": 0, + }, + } + + +def test_generate_from_preexisting( + monkeypatch, tmpdir, mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_repo +): + tmp_path = tmpdir.strpath + + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n") + revision1 = commit(hg, 1) + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + report = covdir_report( + { + "source_files": [ + {"name": "file", "coverage": [None, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]} + ] + } + ) + + uploaded_data = None + patch_calls = 0 + + class Blob: + def exists(self): + return True + + def upload_from_string(self, val): + nonlocal uploaded_data + uploaded_data = val + + def download_as_bytes(self, raw_download=False): + return zstandard.ZstdCompressor().compress( + json.dumps( + { + "revision1": { + "added": 7, + "covered": 3, + "unknown": 0, + }, + "revision2": None, + } + ).encode("ascii") + ) + + def patch(self): + nonlocal patch_calls + assert self.content_type == "application/json" + assert self.content_encoding == "zstd" + patch_calls += 1 + + class Bucket: + def blob(self, path): + assert path == "commit_coverage.json.zst" + return Blob() + + myBucket = Bucket() + + def get_bucket(acc): + return myBucket + + monkeypatch.setattr(commit_coverage, "get_bucket", get_bucket) + + def list_reports(bucket, repo): + assert bucket == myBucket + assert repo == "mozilla-central" + yield revision2, "linux", "all" + yield revision2, "all", "xpcshell" + yield revision2, "all", "all" + + monkeypatch.setattr(commit_coverage, "list_reports", list_reports) + + def download_report(report_dir, bucket, report_name): + os.makedirs( + os.path.join(tmp_path, report_dir, "mozilla-central", revision2), + exist_ok=True, + ) + with open( + os.path.join( + tmp_path, report_dir, "mozilla-central", revision2, "all:all.json" + ), + "w", + ) as f: + json.dump(report, f) + + return True + + monkeypatch.setattr(commit_coverage, "download_report", download_report) + + with hgmo.HGMO(repo_dir=local) as hgmo_server: + commit_coverage.generate(hgmo_server.server_address, local, out_dir=tmp_path) + + assert patch_calls == 1 + + dctx = zstandard.ZstdDecompressor() + with open(os.path.join(tmp_path, "commit_coverage.json.zst"), "rb") as zf: + with dctx.stream_reader(zf) as reader: + result = json.load(reader) + + assert result == json.loads(dctx.decompress(uploaded_data)) + assert result == { + "revision1": {"added": 7, "covered": 3, "unknown": 0}, + "revision2": None, + revision1: { + "added": 3, + "covered": 2, + "unknown": 0, + }, + revision2: { + "added": 6, + "covered": 0, + "unknown": 0, + }, + } diff --git a/bot/tests/test_grcov.py b/bot/tests/test_grcov.py index 310acfa8b..324fae5f6 100644 --- a/bot/tests/test_grcov.py +++ b/bot/tests/test_grcov.py @@ -33,10 +33,7 @@ def test_report_grcov_artifact_coverallsplus(grcov_artifact): assert "source_digest" in report["source_files"][0] assert len(report["source_files"][0]["functions"]) == 1 assert report["source_files"][0]["functions"][0]["exec"] - assert ( - report["source_files"][0]["functions"][0]["name"] - == "_ZNK2js3jit6BitSet5emptyEv" - ) + assert report["source_files"][0]["functions"][0]["name"] == "js::jit::BitSet::empty" assert report["source_files"][0]["functions"][0]["start"] == 1 diff --git a/bot/tests/test_hook.py b/bot/tests/test_hook.py index ed726a5b5..6dabe9c0c 100644 --- a/bot/tests/test_hook.py +++ b/bot/tests/test_hook.py @@ -17,7 +17,10 @@ { "firedBy": "triggerHook", "taskId": "xxx", - "payload": {"taskName": "Custom task name", "taskGroupId": "yyyy"}, + "payload": { + "taskName": "Custom task name", + "coverageIngestionTaskGroupId": "yyyy", + }, }, ), # Cron trigger diff --git a/bot/tests/test_notifier.py b/bot/tests/test_notifier.py index a97ec2bbe..827b5783c 100644 --- a/bot/tests/test_notifier.py +++ b/bot/tests/test_notifier.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- +import hglib + +from code_coverage_bot import hgmo from code_coverage_bot.notifier import notify_email from code_coverage_bot.phabricator import PhabricatorUploader from conftest import add_file @@ -12,16 +15,17 @@ def test_notification(mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_ hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n") - commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") - revision = commit(hg, 2) + revision2 = commit(hg, 2) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - stack = changesets(local, revision) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) assert len(stack) == 2 assert ( stack[0]["desc"] @@ -35,20 +39,41 @@ def test_notification(mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_ report = covdir_report( { "source_files": [ - {"name": "file", "coverage": [None, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0]} + {"name": "file", "coverage": [None, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0]} ] } ) - phab = PhabricatorUploader(local, revision) - changesets_coverage = phab.generate(report, stack) + phab = PhabricatorUploader(local, revision2) + with hglib.open(local) as hg: + changesets_coverage = phab.generate(hg, report, stack) assert changesets_coverage == { - 1: {"file": {"lines_added": 4, "lines_covered": 2, "coverage": "NUCU"}}, - 2: {"file": {"lines_added": 6, "lines_covered": 0, "coverage": "NUCUUUUUUU"}}, + revision1: { + "revision_id": 1, + "paths": { + "file": { + "lines_added": 3, + "lines_covered": 2, + "lines_unknown": 0, + "coverage": "NCCU", + } + }, + }, + revision2: { + "revision_id": 2, + "paths": { + "file": { + "lines_added": 6, + "lines_covered": 0, + "lines_unknown": 0, + "coverage": "NCCUUUUUUU", + } + }, + }, } - mail = notify_email(revision, stack, changesets_coverage) + mail = notify_email(revision2, stack, changesets_coverage) assert ( mail - == "* [Commit [(b'M', b'file')]Differential Revision: https://phabricator.services.mozilla.com/D2](https://phabricator.services.mozilla.com/D2): 0 covered out of 6 added.\n" # noqa + == """* [Commit [(b'M', b'file')]Differential Revision: https://phabricator.services.mozilla.com/D2](https://phabricator.services.mozilla.com/D2): 0 covered out of 6 added.\n""" ) diff --git a/bot/tests/test_phabricator.py b/bot/tests/test_phabricator.py index 76c0e6104..808cf67c8 100644 --- a/bot/tests/test_phabricator.py +++ b/bot/tests/test_phabricator.py @@ -4,8 +4,10 @@ import os import urllib.parse +import hglib import responses +from code_coverage_bot import hgmo from code_coverage_bot.phabricator import PhabricatorUploader from conftest import add_file from conftest import changesets @@ -28,13 +30,27 @@ def test_simple(mock_secrets, mock_phabricator, fake_hg_repo): report = covdir_report( {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1, 1, 0]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCCCCU", "lines_added": 7, "lines_covered": 5}} + revision: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 6, + "lines_covered": 4, + "lines_unknown": 0, + } + }, + } } - phabricator.upload(report, changesets(local, revision)) + phabricator.upload(report, stack) assert len(responses.calls) >= 3 @@ -56,7 +72,7 @@ def test_simple(mock_secrets, mock_phabricator, fake_hg_repo): call = responses.calls[-3] assert call.request.url == "http://phabricator.test/api/harbormaster.sendmessage" params = json.loads(urllib.parse.parse_qs(call.request.body)["params"][0]) - assert params["buildTargetPHID"] == "PHID-HMBT-test" + assert params["receiver"] == "PHID-HMBT-test" assert params["type"] == "pass" assert params["unit"] == [ { @@ -78,7 +94,7 @@ def test_simple(mock_secrets, mock_phabricator, fake_hg_repo): call = responses.calls[-1] assert call.request.url == "http://phabricator.test/api/harbormaster.sendmessage" params = json.loads(urllib.parse.parse_qs(call.request.body)["params"][0]) - assert params["buildTargetPHID"] == "PHID-HMBT-test-lint" + assert params["receiver"] == "PHID-HMBT-test-lint" assert params["type"] == "pass" assert params["unit"] == [] assert params["lint"] == [] @@ -96,9 +112,13 @@ def test_file_with_no_coverage(mock_secrets, fake_hg_repo): phabricator = PhabricatorUploader(local, revision) report = covdir_report({"source_files": []}) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) - assert results == {1: {}} + assert results == {revision: {"revision_id": 1, "paths": {}}} def test_one_commit_without_differential(mock_secrets, fake_hg_repo): @@ -113,15 +133,27 @@ def test_one_commit_without_differential(mock_secrets, fake_hg_repo): phabricator = PhabricatorUploader(local, revision) report = covdir_report( - { - "source_files": [ - {"name": "file_one_commit", "coverage": [None, 0, 1, 1, 1, 1, 0]} - ] - } + {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1, 1, 0]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision) - assert results == {} + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) + + assert results == { + revision: { + "revision_id": None, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 6, + "lines_covered": 4, + "lines_unknown": 0, + } + }, + } + } def test_two_commits_two_files(mock_secrets, fake_hg_repo): @@ -129,16 +161,16 @@ def test_two_commits_two_files(mock_secrets, fake_hg_repo): add_file(hg, local, "file1_commit1", "1\n2\n3\n4\n5\n6\n7\n") add_file(hg, local, "file2_commit1", "1\n2\n3\n") - revision = commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file3_commit2", "1\n2\n3\n4\n5\n") - revision = commit(hg, 2) + revision2 = commit(hg, 2) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report( { "source_files": [ @@ -148,19 +180,40 @@ def test_two_commits_two_files(mock_secrets, fake_hg_repo): ] } ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: { - "file1_commit1": { - "coverage": "NUCCCCU", - "lines_added": 7, - "lines_covered": 5, + revision1: { + "revision_id": 1, + "paths": { + "file1_commit1": { + "coverage": "NUCCCCU", + "lines_added": 6, + "lines_covered": 4, + "lines_unknown": 0, + }, + "file2_commit1": { + "coverage": "CCU", + "lines_added": 3, + "lines_covered": 2, + "lines_unknown": 0, + }, }, - "file2_commit1": {"coverage": "CCU", "lines_added": 3, "lines_covered": 2}, }, - 2: { - "file3_commit2": {"coverage": "CCUCN", "lines_added": 5, "lines_covered": 4} + revision2: { + "revision_id": 2, + "paths": { + "file3_commit2": { + "coverage": "CCUCN", + "lines_added": 4, + "lines_covered": 3, + "lines_unknown": 0, + } + }, }, } @@ -169,24 +222,48 @@ def test_changesets_overwriting(mock_secrets, fake_hg_repo): hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file", "1\n2\n3\n42\n5\n6\n7\n") - revision = commit(hg, 2) + revision2 = commit(hg, 2) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report( {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1, 1, 0]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCXCCU", "lines_added": 6, "lines_covered": 4}}, - 2: {"file": {"coverage": "NUCCCCU", "lines_added": 1, "lines_covered": 1}}, + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCXCCU", + "lines_added": 6, + "lines_covered": 3, + "lines_unknown": 1, + } + }, + }, + revision2: { + "revision_id": 2, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 1, + "lines_covered": 1, + "lines_unknown": 0, + } + }, + }, } @@ -194,16 +271,16 @@ def test_changesets_displacing(mock_secrets, fake_hg_repo): hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file", "-1\n-2\n1\n2\n3\n4\n5\n6\n7\n8\n9\n") - revision = commit(hg, 2) + revision2 = commit(hg, 2) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report( { "source_files": [ @@ -211,11 +288,35 @@ def test_changesets_displacing(mock_secrets, fake_hg_repo): ] } ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCCCCU", "lines_added": 7, "lines_covered": 4}}, - 2: {"file": {"coverage": "UCNUCCCCUCU", "lines_added": 4, "lines_covered": 2}}, + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 6, + "lines_covered": 4, + "lines_unknown": 0, + } + }, + }, + revision2: { + "revision_id": 2, + "paths": { + "file": { + "coverage": "UCNUCCCCUCU", + "lines_added": 4, + "lines_covered": 2, + "lines_unknown": 0, + } + }, + }, } @@ -223,24 +324,101 @@ def test_changesets_reducing_size(mock_secrets, fake_hg_repo): hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file", "1\n2\n3\n4\n5\n") - revision = commit(hg, 2) + revision2 = commit(hg, 2) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report( {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCCCXX", "lines_added": 5, "lines_covered": 4}}, - 2: {"file": {"coverage": "NUCCC", "lines_added": 0, "lines_covered": 0}}, + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCCCXX", + "lines_added": 6, + "lines_covered": 3, + "lines_unknown": 2, + } + }, + }, + revision2: { + "revision_id": 2, + "paths": { + "file": { + "coverage": "NUCCC", + "lines_added": 0, + "lines_covered": 0, + "lines_unknown": 0, + } + }, + }, + } + + +def test_changesets_increasing_size(mock_secrets, fake_hg_repo): + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n") + revision1 = commit(hg, 1) + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + phabricator = PhabricatorUploader(local, revision2) + report = covdir_report( + { + "source_files": [ + {"name": "file", "coverage": [None, 0, 1, 0, 0, 0, 0, 0, 1, 1]} + ] + } + ) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) + + assert results == { + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCU", + "lines_added": 3, + "lines_covered": 1, + "lines_unknown": 0, + } + }, + }, + revision2: { + "revision_id": 2, + "paths": { + "file": { + "coverage": "NUCUUUUUCC", + "lines_added": 6, + "lines_covered": 2, + "lines_unknown": 0, + } + }, + }, } @@ -250,24 +428,49 @@ def test_changesets_overwriting_one_commit_without_differential( hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) add_file(hg, local, "file", "1\n2\n3\n42\n5\n6\n7\n") - revision = commit(hg) + revision2 = commit(hg) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report( {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1, 1, 0]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCXCCU", "lines_added": 6, "lines_covered": 4}} + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCXCCU", + "lines_added": 6, + "lines_covered": 3, + "lines_unknown": 1, + } + }, + }, + revision2: { + "revision_id": None, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 1, + "lines_covered": 1, + "lines_unknown": 0, + } + }, + }, } @@ -275,47 +478,103 @@ def test_removed_file(mock_secrets, fake_hg_repo): hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) hg.remove(files=[bytes(os.path.join(local, "file"), "ascii")]) - revision = commit(hg) + revision2 = commit(hg) hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision2) report = covdir_report({"source_files": []}) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision2) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) - assert results == {1: {}} + assert results == { + revision1: {"revision_id": 1, "paths": {}}, + revision2: {"revision_id": None, "paths": {}}, + } def test_backout_removed_file(mock_secrets, fake_hg_repo): hg, local, remote = fake_hg_repo add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") - commit(hg, 1) + revision1 = commit(hg, 1) hg.remove(files=[bytes(os.path.join(local, "file"), "ascii")]) - revision = commit(hg, 2) + revision2 = commit(hg, 2) - hg.backout(rev=revision, message="backout", user="marco") - revision = hg.log(limit=1)[0][1].decode("ascii") + hg.backout(rev=revision2, message=f"Backout {revision2[:12]}", user="marco") + revision3 = hg.log(limit=1)[0][1].decode("ascii") hg.push(dest=bytes(remote, "ascii")) copy_pushlog_database(remote, local) - phabricator = PhabricatorUploader(local, revision) + phabricator = PhabricatorUploader(local, revision3) report = covdir_report( {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1, 1, 0]}]} ) - results = phabricator.generate(report, changesets(local, revision)) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision3) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) + + assert results == { + revision1: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCCCCU", + "lines_added": 6, + "lines_covered": 4, + "lines_unknown": 0, + } + }, + }, + revision2: {"revision_id": 2, "paths": {}}, + } + + +def test_coverable_last_lines(mock_secrets, mock_phabricator, fake_hg_repo): + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n") + revision = commit(hg, 1) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + phabricator = PhabricatorUploader(local, revision) + report = covdir_report( + {"source_files": [{"name": "file", "coverage": [None, 0, 1, 1, 1]}]} + ) + with hgmo.HGMO(local) as hgmo_server: + stack = changesets(hgmo_server, revision) + + with hglib.open(local) as hg: + results = phabricator.generate(hg, report, stack) assert results == { - 1: {"file": {"coverage": "NUCCCCU", "lines_added": 7, "lines_covered": 5}}, - 2: {}, + revision: { + "revision_id": 1, + "paths": { + "file": { + "coverage": "NUCCCNN", + "lines_added": 4, + "lines_covered": 3, + "lines_unknown": 0, + } + }, + } } diff --git a/bot/tests/test_taskcluster.py b/bot/tests/test_taskcluster.py index 44aa4b448..2ea2a3f99 100644 --- a/bot/tests/test_taskcluster.py +++ b/bot/tests/test_taskcluster.py @@ -103,7 +103,7 @@ def test_get_tasks_in_group(mock_taskcluster, GROUP_TASKS_1, GROUP_TASKS_2): ) responses.add( responses.GET, - "http://taskcluster.test/api/queue/v1/task-group/aPt9FbIdQwmhwDIPDYLuaw/list?continuationToken=1%2132%21YVB0OUZiSWRRd21od0RJUERZTHVhdw--~1%2132%21ZnJVcGRRT0VTalN0Nm9Ua1Ztcy04UQ--&limit=200", # noqa + "http://taskcluster.test/api/queue/v1/task-group/aPt9FbIdQwmhwDIPDYLuaw/list?continuationToken=1%2132%21YVB0OUZiSWRRd21od0RJUERZTHVhdw--~1%2132%21ZnJVcGRRT0VTalN0Nm9Ua1Ztcy04UQ--&limit=200", json=GROUP_TASKS_2, status=200, match_querystring=True, @@ -130,12 +130,16 @@ def test_get_tasks_in_group(mock_taskcluster, GROUP_TASKS_1, GROUP_TASKS_2): ("test-windows10-64-ccov/debug-mochitest-1", True), ("test-windows10-64-ccov/debug-mochitest-e10s-7", True), ("test-windows10-64-ccov/debug-cppunit", True), + ("test-windows10-64-ccov-qr/debug-mochitest-1", True), + ("test-windows10-64-ccov-qr/debug-mochitest-e10s-7", True), + ("test-windows10-64-ccov-qr/debug-cppunit", True), ("build-linux64-ccov/debug", True), ("build-linux64-ccov/opt", True), ("build-android-test-ccov/opt", True), ("build-win64-ccov/debug", True), ("test-linux64/debug-mochitest-1", False), ("test-windows10-64/debug-cppunit", False), + ("test-windows10-64-qr/debug-cppunit", False), ("build-win64/debug", False), ("build-signing-win64-ccov/debug", True), ], @@ -159,6 +163,9 @@ def test_is_coverage_task(task_name, expected): ("test-windows10-64-ccov/debug-mochitest-1", "mochitest-1"), ("test-windows10-64-ccov/debug-mochitest-e10s-7", "mochitest-7"), ("test-windows10-64-ccov/debug-cppunit", "cppunit"), + ("test-windows10-64-ccov-qr/debug-mochitest-1", "mochitest-1"), + ("test-windows10-64-ccov-qr/debug-mochitest-e10s-7", "mochitest-7"), + ("test-windows10-64-ccov-qr/debug-cppunit", "cppunit"), ("build-linux64-ccov/opt", "build"), ("build-android-test-ccov/opt", "build"), ("build-win64-ccov/debug", "build"), @@ -197,10 +204,18 @@ def test_chunk_to_suite(chunk, expected): ("test-windows10-64-ccov/debug-mochitest-1", "mochitest-1"), ("test-windows10-64-ccov/debug-mochitest-e10s-7", "mochitest-plain-chunked-7"), ("test-windows10-64-ccov/debug-cppunit", "cppunittest-1"), + ("test-windows10-64-ccov-qr/debug-mochitest-1", "mochitest-1"), + ( + "test-windows10-64-ccov-qr/debug-mochitest-e10s-7", + "mochitest-plain-chunked-7", + ), + ("test-windows10-64-ccov-qr/debug-cppunit", "cppunittest-1"), ("build-linux64-ccov/opt", "build"), ("build-android-test-ccov/opt", "build"), ("build-win64-ccov/debug", "build"), ("build-signing-win64-ccov/debug", "build-signing"), + ("source-test-node-newtab-unit-tests-ccov", "source-test"), + ("fuzzing-grizzly-windows64-ccov", "fuzzing"), ], ) def test_get_chunk(task_name, expected): @@ -222,10 +237,15 @@ def test_get_chunk(task_name, expected): ("test-windows10-64-ccov/debug-mochitest-1", "mochitest"), ("test-windows10-64-ccov/debug-mochitest-e10s-7", "mochitest-plain-chunked"), ("test-windows10-64-ccov/debug-cppunit", "cppunittest"), + ("test-windows10-64-ccov-qr/debug-mochitest-1", "mochitest"), + ("test-windows10-64-ccov-qr/debug-mochitest-e10s-7", "mochitest-plain-chunked"), + ("test-windows10-64-ccov-qr/debug-cppunit", "cppunittest"), ("build-linux64-ccov/opt", "build"), ("build-android-test-ccov/opt", "build"), ("build-win64-ccov/debug", "build"), ("build-signing-win64-ccov/debug", "build-signing"), + ("source-test-node-newtab-unit-tests-ccov", "source-test"), + ("fuzzing-grizzly-windows64-ccov", "fuzzing"), ], ) def test_get_suite(task_name, expected): @@ -244,10 +264,15 @@ def test_get_suite(task_name, expected): ("test-windows10-64-ccov/debug-mochitest-1", "windows"), ("test-windows10-64-ccov/debug-mochitest-e10s-7", "windows"), ("test-windows10-64-ccov/debug-cppunit", "windows"), + ("test-windows10-64-ccov-qr/debug-mochitest-1", "windows"), + ("test-windows10-64-ccov-qr/debug-mochitest-e10s-7", "windows"), + ("test-windows10-64-ccov-qr/debug-cppunit", "windows"), ("build-linux64-ccov/opt", "linux"), ("build-android-test-ccov/opt", "android"), ("build-win64-ccov/debug", "windows"), ("build-signing-win64-ccov/debug", "windows"), + ("source-test-node-newtab-unit-tests-ccov", "linux"), + ("fuzzing-grizzly-windows64-ccov", "windows"), ], ) def test_get_platform(task_name, expected): @@ -265,7 +290,7 @@ def test_download_artifact_forbidden(mock_taskcluster, tmpdir, mock_tenacity): with pytest.raises( requests.exceptions.HTTPError, - match="403 Client Error: Forbidden for url: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FBdocjnAQOW_GJDOfmgjxw/artifacts/public%2Ftest_info%2Fcode-coverage-grcov.zip", # noqa + match="403 Client Error: Forbidden for url: https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FBdocjnAQOW_GJDOfmgjxw/artifacts/public%2Ftest_info%2Fcode-coverage-grcov.zip", ): taskcluster.download_artifact( os.path.join(tmpdir.strpath, "windows_reftest-6_code-coverage-grcov.zip"), diff --git a/bot/tests/test_trigger_missing.py b/bot/tests/test_trigger_missing.py new file mode 100644 index 000000000..a49b979e7 --- /dev/null +++ b/bot/tests/test_trigger_missing.py @@ -0,0 +1,355 @@ +# -*- coding: utf-8 -*- +import io +import os + +import responses +import zstandard + +from code_coverage_bot import hgmo +from code_coverage_bot import taskcluster +from code_coverage_bot import trigger_missing +from code_coverage_bot import uploader +from code_coverage_bot.taskcluster import taskcluster_config +from conftest import add_file +from conftest import commit +from conftest import copy_pushlog_database + + +def test_trigger_from_scratch( + monkeypatch, tmpdir, mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_repo +): + tmp_path = tmpdir.strpath + + responses.add( + responses.HEAD, + "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.relman.code-coverage.production.crontrigger.latest/artifacts/public/triggered_revisions.zst", + status=404, + ) + + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n") + commit(hg, 1) + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file2", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision3 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file3", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision4 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file4", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision5 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + copy_pushlog_database(remote, local) + + myBucket = {} + + def get_bucket(acc): + return myBucket + + monkeypatch.setattr(trigger_missing, "get_bucket", get_bucket) + + gcp_covdir_exists_calls = 0 + + def gcp_covdir_exists(bucket, repository, revision, platform, suite): + nonlocal gcp_covdir_exists_calls + gcp_covdir_exists_calls += 1 + assert bucket == myBucket + assert repository == "mozilla-central" + assert platform == "all" + assert suite == "all" + return revision == revision3 + + monkeypatch.setattr(uploader, "gcp_covdir_exists", gcp_covdir_exists) + + def slugId(): + return "myGroupId" + + monkeypatch.setattr(trigger_missing, "slugId", slugId) + + trigger_hook_calls = 0 + + def get_service(serv): + assert serv == "hooks" + + class HooksService: + def triggerHook(self, hook_group, hook_id, payload): + nonlocal trigger_hook_calls + assert hook_group == "project-relman" + assert hook_id == "code-coverage-repo-production" + rev = revision4 if trigger_hook_calls == 0 else revision2 + assert payload == { + "REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "REVISION": rev, + "coverageIngestionTaskGroupId": "myGroupId", + "taskName": f"covdir for {rev}", + } + trigger_hook_calls += 1 + + return HooksService() + + monkeypatch.setattr(taskcluster_config, "get_service", get_service) + + get_decision_task_calls = 0 + + def get_decision_task(branch, revision): + nonlocal get_decision_task_calls + assert branch == "mozilla-central" + if get_decision_task_calls == 0: + assert revision == revision5 + elif get_decision_task_calls == 1: + assert revision == revision4 + elif get_decision_task_calls == 2: + assert revision == revision2 + get_decision_task_calls += 1 + return f"decisionTask-{revision}" + + monkeypatch.setattr(taskcluster, "get_decision_task", get_decision_task) + + get_task_details_calls = 0 + + def get_task_details(decision_task_id): + nonlocal get_task_details_calls + if get_task_details_calls == 0: + assert decision_task_id == f"decisionTask-{revision5}" + get_task_details_calls += 1 + return {"taskGroupId": f"decisionTaskGroup-{revision5}"} + elif get_task_details_calls == 1: + assert decision_task_id == f"decisionTask-{revision4}" + get_task_details_calls += 1 + return {"taskGroupId": f"decisionTaskGroup-{revision4}"} + elif get_task_details_calls == 2: + assert decision_task_id == f"decisionTask-{revision2}" + get_task_details_calls += 1 + return {"taskGroupId": f"decisionTaskGroup-{revision2}"} + + monkeypatch.setattr(taskcluster, "get_task_details", get_task_details) + + get_tasks_in_group_calls = 0 + + def get_tasks_in_group(group_id): + nonlocal get_tasks_in_group_calls + if get_tasks_in_group_calls == 0: + assert group_id == f"decisionTaskGroup-{revision5}" + get_tasks_in_group_calls += 1 + return [ + { + "status": { + "state": "running", + }, + "task": { + "metadata": { + "name": "build-linux64-ccov/opt", + } + }, + } + ] + elif get_tasks_in_group_calls == 1: + assert group_id == f"decisionTaskGroup-{revision4}" + get_tasks_in_group_calls += 1 + return [ + { + "status": { + "state": "completed", + }, + "task": { + "metadata": { + "name": "build-linux64-ccov/opt", + } + }, + } + ] + elif get_tasks_in_group_calls == 2: + assert group_id == f"decisionTaskGroup-{revision2}" + get_tasks_in_group_calls += 1 + return [ + { + "status": { + "state": "completed", + }, + "task": { + "metadata": { + "name": "build-linux64-ccov/opt", + } + }, + } + ] + + monkeypatch.setattr(taskcluster, "get_tasks_in_group", get_tasks_in_group) + + with hgmo.HGMO(repo_dir=local) as hgmo_server: + trigger_missing.trigger_missing(hgmo_server.server_address, out_dir=tmp_path) + + assert gcp_covdir_exists_calls == 4 + assert trigger_hook_calls == 2 + assert get_decision_task_calls == 3 + assert get_task_details_calls == 3 + assert get_tasks_in_group_calls == 3 + + dctx = zstandard.ZstdDecompressor() + with open(os.path.join(tmp_path, "triggered_revisions.zst"), "rb") as zf: + with dctx.stream_reader(zf) as reader: + with io.TextIOWrapper(reader, encoding="ascii") as f: + result = set(rev for rev in f.read().splitlines()) + + assert result == {revision2, revision3, revision4} + + +def test_trigger_from_preexisting( + monkeypatch, tmpdir, mock_secrets, mock_taskcluster, mock_phabricator, fake_hg_repo +): + tmp_path = tmpdir.strpath + + hg, local, remote = fake_hg_repo + + add_file(hg, local, "file", "1\n2\n3\n4\n") + commit(hg, 1) + + add_file(hg, local, "file", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision2 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file2", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision3 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + add_file(hg, local, "file3", "1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n") + revision4 = commit(hg, 2) + + hg.push(dest=bytes(remote, "ascii")) + + responses.add( + responses.HEAD, + "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.relman.code-coverage.production.crontrigger.latest/artifacts/public/triggered_revisions.zst", + status=200, + ) + + responses.add( + responses.GET, + "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.relman.code-coverage.production.crontrigger.latest/artifacts/public/triggered_revisions.zst", + status=200, + body=zstandard.ZstdCompressor().compress( + f"{revision2}\n{revision3}".encode("ascii") + ), + ) + + copy_pushlog_database(remote, local) + + myBucket = {} + + def get_bucket(acc): + return myBucket + + monkeypatch.setattr(trigger_missing, "get_bucket", get_bucket) + + gcp_covdir_exists_calls = 0 + + def gcp_covdir_exists(bucket, repository, revision, platform, suite): + nonlocal gcp_covdir_exists_calls + gcp_covdir_exists_calls += 1 + assert bucket == myBucket + assert repository == "mozilla-central" + assert platform == "all" + assert suite == "all" + return revision == revision3 + + monkeypatch.setattr(uploader, "gcp_covdir_exists", gcp_covdir_exists) + + def slugId(): + return "myGroupId" + + monkeypatch.setattr(trigger_missing, "slugId", slugId) + + trigger_hook_calls = 0 + + def get_service(serv): + assert serv == "hooks" + + class HooksService: + def triggerHook(self, hook_group, hook_id, payload): + nonlocal trigger_hook_calls + assert hook_group == "project-relman" + assert hook_id == "code-coverage-repo-production" + assert payload == { + "REPOSITORY": "https://hg.mozilla.org/mozilla-central", + "REVISION": revision4, + "coverageIngestionTaskGroupId": "myGroupId", + "taskName": f"covdir for {revision4}", + } + trigger_hook_calls += 1 + + return HooksService() + + monkeypatch.setattr(taskcluster_config, "get_service", get_service) + + get_decision_task_calls = 0 + + def get_decision_task(branch, revision): + nonlocal get_decision_task_calls + assert branch == "mozilla-central" + assert revision == revision4 + get_decision_task_calls += 1 + return f"decisionTask-{revision}" + + monkeypatch.setattr(taskcluster, "get_decision_task", get_decision_task) + + get_task_details_calls = 0 + + def get_task_details(decision_task_id): + nonlocal get_task_details_calls + assert decision_task_id == f"decisionTask-{revision4}" + get_task_details_calls += 1 + return {"taskGroupId": f"decisionTaskGroup-{revision4}"} + + monkeypatch.setattr(taskcluster, "get_task_details", get_task_details) + + get_tasks_in_group_calls = 0 + + def get_tasks_in_group(group_id): + nonlocal get_tasks_in_group_calls + assert group_id == f"decisionTaskGroup-{revision4}" + get_tasks_in_group_calls += 1 + return [ + { + "status": { + "state": "completed", + }, + "task": { + "metadata": { + "name": "build-linux64-ccov/opt", + } + }, + } + ] + + monkeypatch.setattr(taskcluster, "get_tasks_in_group", get_tasks_in_group) + + with hgmo.HGMO(repo_dir=local) as hgmo_server: + trigger_missing.trigger_missing(hgmo_server.server_address, out_dir=tmp_path) + + assert gcp_covdir_exists_calls == 1 + assert trigger_hook_calls == 1 + assert get_decision_task_calls == 1 + assert get_task_details_calls == 1 + assert get_tasks_in_group_calls == 1 + + dctx = zstandard.ZstdDecompressor() + with open(os.path.join(tmp_path, "triggered_revisions.zst"), "rb") as zf: + with dctx.stream_reader(zf) as reader: + with io.TextIOWrapper(reader, encoding="ascii") as f: + result = set(rev for rev in f.read().splitlines()) + + assert result == {revision2, revision3, revision4} diff --git a/bot/tools/covdir_gen.py b/bot/tools/covdir_gen.py index 90e95e9b6..717b03645 100644 --- a/bot/tools/covdir_gen.py +++ b/bot/tools/covdir_gen.py @@ -1,41 +1,42 @@ # -*- coding: utf-8 -*- import argparse import json -import os from datetime import datetime from taskcluster.utils import slugId -from code_coverage_bot.secrets import secrets from code_coverage_bot.taskcluster import taskcluster_config MC_REPO = "https://hg.mozilla.org/mozilla-central" HOOK_GROUP = "project-relman" -HOOK_ID = "code-coverage-{app_channel}" +HOOK_ID = "code-coverage-repo-{app_channel}" -def trigger_task(task_group_id, commit): +def trigger_task(app_channel, task_group_id, commit): """ Trigger a code coverage task to build covdir at a specified revision """ date = datetime.fromtimestamp(commit["date"]).strftime("%Y-%m-%d") name = "covdir with suites on {} - {} - {}".format( - secrets[secrets.APP_CHANNEL], date, commit["changeset"] + app_channel, date, commit["changeset"] ) hooks = taskcluster_config.get_service("hooks") payload = { "REPOSITORY": MC_REPO, "REVISION": commit["changeset"], - "taskGroupId": task_group_id, + "coverageIngestionTaskGroupId": task_group_id, "taskName": name, } - hook_id = HOOK_ID.format(app_channel=secrets[secrets.APP_CHANNEL]) + hook_id = HOOK_ID.format(app_channel=app_channel) return hooks.triggerHook(HOOK_GROUP, hook_id, payload) def main(): # CLI args parser = argparse.ArgumentParser() + parser.add_argument( + "--channel", type=str, default="production", help="Which channel to use" + ) parser.add_argument("--nb-tasks", type=int, default=5, help="NB of tasks to create") parser.add_argument( "--group", type=str, default=slugId(), help="Task group to create/update" @@ -53,7 +54,6 @@ def main(): # Setup Taskcluster taskcluster_config.auth() - secrets.load(os.environ["TASKCLUSTER_SECRET"]) # List existing tags & commits print("Group", args.group) @@ -104,7 +104,7 @@ def main(): if args.dry_run: print(">>> No trigger on dry run") else: - out = trigger_task(args.group, commit) + out = trigger_task(args.app_channel, args.group, commit) print(">>>", out["status"]["taskId"]) nb += 1 dates.append(date.date()) diff --git a/bot/tools/restart_tasks.py b/bot/tools/restart_tasks.py index 58907eb7a..1e27edefc 100644 --- a/bot/tools/restart_tasks.py +++ b/bot/tools/restart_tasks.py @@ -43,7 +43,7 @@ def trigger_task(task_group_id, repository, commit): payload = { "REPOSITORY": repository, "REVISION": commit, - "taskGroupId": task_group_id, + "coverageIngestionTaskGroupId": task_group_id, "taskName": name, } hook_id = HOOK_ID.format(app_channel=secrets[secrets.APP_CHANNEL]) diff --git a/events/Dockerfile b/events/Dockerfile deleted file mode 100644 index dc7cf789e..000000000 --- a/events/Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -FROM python:3.7-slim - - -ADD tools /src/tools -ADD events /src/events - -RUN cd /src/tools && pip install --disable-pip-version-check --no-cache-dir --quiet . -RUN cd /src/events && pip install --disable-pip-version-check --no-cache-dir --quiet . - -CMD ["code-coverage-events"] diff --git a/events/VERSION b/events/VERSION deleted file mode 100644 index ccad953ac..000000000 --- a/events/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.1.12 diff --git a/events/code_coverage_events/__init__.py b/events/code_coverage_events/__init__.py deleted file mode 100644 index e6f54f0e6..000000000 --- a/events/code_coverage_events/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -*- coding: utf-8 -*- - -from taskcluster.helper import TaskclusterConfig - -taskcluster_config = TaskclusterConfig("https://firefox-ci-tc.services.mozilla.com") - -QUEUE_MONITORING = "monitoring" -QUEUE_PULSE = "pulse" diff --git a/events/code_coverage_events/cli.py b/events/code_coverage_events/cli.py deleted file mode 100644 index 27f1f6891..000000000 --- a/events/code_coverage_events/cli.py +++ /dev/null @@ -1,52 +0,0 @@ -# -*- coding: utf-8 -*- -import argparse -import os - -import structlog - -from code_coverage_events import taskcluster_config -from code_coverage_events.workflow import Events -from code_coverage_tools.log import init_logger - -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() - - -def main(): - args = parse_cli() - taskcluster_config.auth(args.taskcluster_client_id, args.taskcluster_access_token) - taskcluster_config.load_secrets( - args.taskcluster_secret, - prefixes=["common", "events"], - required=("pulse_user", "pulse_password", "hook_id", "hook_group_id"), - existing=dict(admins=["babadie@mozilla.com", "mcastelluccio@mozilla.com"]), - ) - - init_logger( - "events", - channel=taskcluster_config.secrets.get("APP_CHANNEL", "dev"), - 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 deleted file mode 100644 index 5834ec2ec..000000000 --- a/events/code_coverage_events/workflow.py +++ /dev/null @@ -1,196 +0,0 @@ -# -*- coding: utf-8 -*- - -import asyncio - -import requests -import structlog -from libmozevent.bus import MessageBus -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 import taskcluster_config - -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 = await self.parse(payload["body"]) - 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 "ccov" in task["task"]["metadata"]["name"].split("/")[0].split("-") - - async def get_coverage_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): - 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) - return task - - return None - - def load_tasks(limit=200, continuationToken=None): - query = {"limit": limit} - if continuationToken is not None: - query["continuationToken"] = continuationToken - reply = self.queue.listTaskGroup(group_id, query=query) - return maybe_trigger(reply["tasks"]), reply.get("continuationToken") - - 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(0) - - return task - - try: - return await retrieve_coverage_task() - except requests.exceptions.HTTPError: - return None - - async def parse(self, body): - """ - Extract revisions from payload - """ - taskGroupId = body["taskGroupId"] - scheduler = body["schedulerId"] - - # Check the scheduler name before loading all tasks in the group - # We are only interested in Mozilla gecko builds - if not scheduler.startswith("gecko-level-"): - logger.info( - "Skipping task, unsupported scheduler", - group_id=taskGroupId, - scheduler=scheduler, - ) - return None - - coverage_task = await self.get_coverage_task_in_group(taskGroupId) - if coverage_task is None: - return None - - repository = coverage_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 - - revision = coverage_task["task"]["payload"]["env"]["GECKO_HEAD_REV"] - - logger.info( - "Received groupResolved notification for coverage builds", - repository=repository, - revision=revision, - group=taskGroupId, - ) - - return [{"REPOSITORY": repository, "REVISION": revision}] - - -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( - taskcluster_config, - 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) diff --git a/events/requirements-dev.txt b/events/requirements-dev.txt deleted file mode 100644 index 41ecd74a8..000000000 --- a/events/requirements-dev.txt +++ /dev/null @@ -1,4 +0,0 @@ -pytest -pytest-asyncio -pytest-responses==0.4.0 -responses diff --git a/events/requirements.txt b/events/requirements.txt deleted file mode 100644 index 2b0355687..000000000 --- a/events/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ --e ../tools #egg=code-coverage-tools -libmozevent==1.1.4 diff --git a/events/setup.py b/events/setup.py deleted file mode 100644 index 4629c7156..000000000 --- a/events/setup.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- 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 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(os.path.join(here, "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"] - }, -) diff --git a/events/tests/conftest.py b/events/tests/conftest.py deleted file mode 100644 index 6b63b261b..000000000 --- a/events/tests/conftest.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- 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 code_coverage_events import taskcluster_config - - -@pytest.fixture -def mock_taskcluster(): - """ - Mock Tasklcuster authentication - """ - taskcluster_config.options = {"rootUrl": "http://taskcluster.test"} - - responses.add( - responses.GET, - "https://firefox-ci-tc.services.mozilla.com/api/queue/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 deleted file mode 100644 index 294fc73c8..000000000 --- a/events/tests/fixtures/FG3goVnCQfif8ZEOaM_4IA.json +++ /dev/null @@ -1,905 +0,0 @@ -{ - "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" - ], - "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" - } - } - } - ] -} diff --git a/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json b/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json deleted file mode 100644 index 719c621ca..000000000 --- a/events/tests/fixtures/MibGDsa4Q7uFNzDf7EV6nw.json +++ /dev/null @@ -1,30337 +0,0 @@ -{ - "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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OJ6XJdcsTl6Bwt_kodmKNQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GTG52Q5aT8yBK-HeM5jpMg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/geckoview_example.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Utm5ASVQQYuxx425g3XZ1A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/KtBhdwcgTYOMuvxna77mGw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GTG52Q5aT8yBK-HeM5jpMg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BQUskIWCSP6rfyzBSoVxlg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GGchMyWWSMW0surKh5kr3Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Aan3dsW3T7CXNeZvRE-LKQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DrYLQaCoSBW3UAsBNjKcQQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/N1YNYiNfSFy7dIPGxcPj6w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SSJi3bV7TAKa_5mllOAG1w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cWt8R5ZzTLqRoNOXMjbk8w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Ev4OVc4eSMuOhGFIcto4EA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bTP8HVfTSQuepueTNLh_Qw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VSIQ5dcvSzOIQaZ3IA835w/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C4gR1cv8SpOBakyOu6LKCw/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Lc44F9MwQp2tkaeg2yYP2Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NOOFo3BxQ_-l7MyFmfqfYA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/B6KFSq0DRA-8EWrUFN1o0g/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L7COCN9GSrublARJD_U_LA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IOh-tczSST-IZWprUKmsrg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SeX8_VBUTq6P2ub7SuO-2w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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 deleted file mode 100644 index f18b71dc4..000000000 --- a/events/tests/fixtures/RS0UwZahQ_qAcdZzEb_Y9g.json +++ /dev/null @@ -1,30709 +0,0 @@ -{ - "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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C_yS_qecRH-YpYnKj1jzFg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BO4C5G3zTAah0KCjGpgNEQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YA6cnEBxSbaBIQWf355S8w/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XGslPMxKRwu3YRffWaPJfg/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E-RzK4SNTyOWbDe2dPEu_A/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FIMjBcarS_6k3CSt9IMRSQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UUE-yeY9S9-kXPz9KZkmJg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Kjp4wLciRBiyPUsKAEvaNA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqBLJaRTTrS3CVzQVZ-wug/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SBEOyJmxT1GVfJ41GX45og/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BBsYbg0iSU6rU0hkeybFWA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EbhlduHtRiSuTS1LYJ63hQ/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YnqGPks5RdmnwnJjNRl4pA/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/X0HFDKG7SGq4-y-ncqsizA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Plr6cE1vSgafbp0C_RS1Jw/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QyCO3bZQTXi6a26ka_UbQA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FV2mp-WyTWOQaKtAT8P-WA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZqqNtMk9Twmjm5vFnENIjg/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YzW4IQznQNK4t-tUb7PNbQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OFYW-87xSDaSPNTzmYuoTQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WXvNRP_STdugeqZijT88zQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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 deleted file mode 100644 index a647b5f59..000000000 --- a/events/tests/fixtures/bNq-VIT-Q12o6nXcaUmYNQ.json +++ /dev/null @@ -1,29383 +0,0 @@ -{ - "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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/JKULNW1ETe-xu56i17jF4w/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/avLx7b66Qjadt3W_Wo-QAg/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FNFe07GCQpqjnSwpQu7epA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Uejkfo90QPKu9UqihKy8xQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/E5uFVNQ3S8SgKbncxk8PkQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TjAYI532Styvwto_sEVUcQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PlCQdcbpSlOcNnuxkAmZlA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/DcnzBL8rSquxc_B1DZm87g/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/V9XHy2jGTnSLEsMXB8AI5Q/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IcrXF_5iQlOx1RqiZlVxPA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/anddRnzUShSE_AkmZsSxSQ/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L-2XxaA-Rv-4zoX4qBwhyA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SFJk27AJS7Gz_53Wl_1gbw/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Nf-NmjbdRJaO_pPhNHATtg/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QY3iXOr5RqmktUVjZ1c3xA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PIQ_F4Y1SJOSuM8ZzpuCVQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/G4HyexZGQfKWd95EmJadeA/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/WjBdfnZMQHudBtKOMWWMlQ/artifacts/public/build/target.zip --test-packages-url https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VB2dtaOzQ8WPIvsR7iQnkQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VQ7ndMBeRomdYgE7mSIZxw/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IioqTyCVRTycPHCYzRf48g/artifacts/public/build/target.apk", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/QCeThAC2QM2B9VH7jrNopA/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Fr9oIXBgRk69yrDceUPLMQ/artifacts/public/build/target.tar.bz2", - "--test-packages-url=https://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/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://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UxKgYKqwSBiOu3sltapuHA/artifacts/public/build/target.dmg", - "--test-packages-url", - "https://firefox-ci-tc.services.mozilla.com/api/queue/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 deleted file mode 100644 index 9b35a1a08..000000000 --- a/events/tests/test_workflow.py +++ /dev/null @@ -1,148 +0,0 @@ -# -*- coding: utf-8 -*- -import asyncio -import json -import os - -import pytest -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-linux1804-64-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 hook.is_coverage_task(nocov_task) - - nocov_task = {"task": {"metadata": {"name": "test-linux64/opt-mochitest-1"}}} - assert not hook.is_coverage_task(nocov_task) - - -@pytest.mark.asyncio -async def test_get_coverage_task_in_group(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - hook.triggered_groups.add("already-triggered-group") - - assert await hook.get_coverage_task_in_group("already-triggered-group") is None - - -@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 ( - await hook.parse( - {"schedulerId": "gecko-level-1", "taskGroupId": "already-triggered-group"} - ) - is None - ) - - -def run_async_parser(hook, group_id, scheduler): - """ - 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({"schedulerId": scheduler, "taskGroupId": group_id}) - - loop = asyncio.new_event_loop() - return loop.run_until_complete(_check()) - - -def test_wrong_branch(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - assert run_async_parser(hook, "bNq-VIT-Q12o6nXcaUmYNQ", "gecko-level-1") is None - - -def test_success(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g", "gecko-level-1") == [ - { - "REPOSITORY": "https://hg.mozilla.org/mozilla-central", - "REVISION": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", - } - ] - - -def test_scheduler(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g", "-") is None - assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g", "anotherValue") is None - assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g", "aws-Xxxx") is None - assert run_async_parser(hook, "RS0UwZahQ_qAcdZzEb_Y9g", "gecko-level-1") == [ - { - "REPOSITORY": "https://hg.mozilla.org/mozilla-central", - "REVISION": "ec3dd3ee2ae4b3a63529a912816a110e925eb2d0", - } - ] - - -def test_success_windows(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - assert run_async_parser(hook, "MibGDsa4Q7uFNzDf7EV6nw", "gecko-level-2") == [ - { - "REPOSITORY": "https://hg.mozilla.org/mozilla-central", - "REVISION": "63519bfd42ee379f597c0357af2e712ec3cd9f50", - } - ] - - -def test_success_try(mock_taskcluster): - bus = MessageBus() - hook = CodeCoverage("services-staging-codecoverage/bot", "project-test", bus) - - assert run_async_parser(hook, "FG3goVnCQfif8ZEOaM_4IA", "gecko-level-1") == [ - { - "REPOSITORY": "https://hg.mozilla.org/try", - "REVISION": "066cb18ba95a7efe144e729713c429e422d9f95b", - } - ] - - -def test_hook_group(mock_taskcluster): - bus = MessageBus() - 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) - assert hook.group_id == "anotherProject" - assert hook.hook_id == "anotherHook" diff --git a/frontend/.babelrc b/frontend/.babelrc deleted file mode 100644 index d3eb1523c..000000000 --- a/frontend/.babelrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "plugins": [ - ["prismjs", { - "languages": ["javascript", "clike", "python", "cpp", "c", "css", "java"], - "plugins": ["line-numbers"], - "theme": "solarizedlight", - "css": true - }] - ] -} diff --git a/frontend/.eslintrc.yml b/frontend/.eslintrc.yml deleted file mode 100644 index c0774ea6b..000000000 --- a/frontend/.eslintrc.yml +++ /dev/null @@ -1,19 +0,0 @@ -env: - browser: true - es6: true -plugins: - - prettier - - mozilla -extends: - - standard - - prettier - - plugin:mozilla/recommended -globals: - Atomics: readonly - SharedArrayBuffer: readonly -parserOptions: - ecmaVersion: 2018 - sourceType: module -rules: - max-len: off - prettier/prettier: "error" diff --git a/frontend/.gitignore b/frontend/.gitignore deleted file mode 100644 index b94707787..000000000 --- a/frontend/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -node_modules/ -dist/ diff --git a/frontend/README.md b/frontend/README.md deleted file mode 100644 index 4d1148ae2..000000000 --- a/frontend/README.md +++ /dev/null @@ -1,35 +0,0 @@ -# Mozilla Code Coverage frontend -This is a simple JavaScript application displaying information from the Mozilla code coverage backend (hosted as https://coverage.moz.tools) - -You can use it right now from [coverage.moz.tools](https://coverage.moz.tools/) - -## File viewer - -You can browse the aggregated code coverage data for mozilla-central, per directory, then view file coverage in detail. - -![File browser](screenshot.png) - -## Zero coverage reports - -We've also [developed a page](https://coverage.moz.tools/#view=zero) to easily browse the directories & files with no coverage: these files are interesting because they can sometimes be removed altogether from mozilla-central... - -## Developer setup - -It's a pretty simple Single Page application setup using webpack: - -```console -npm install -npm run start -``` - -The frontend should now be available on http://localhost:9000/ and will use a backend running on http://localhost:8000/ - -You can specify another remote backend like so: - -``` -BACKEND_URL=https://api.coverage.moz.tools npm run start -``` - -## Help - -You can reach us on our Matrix instance: [#codecoverage:mozilla.org](https://chat.mozilla.org/#/room/#codecoverage:mozilla.org) diff --git a/frontend/assets/github.png b/frontend/assets/github.png deleted file mode 100644 index c61ab9d05..000000000 Binary files a/frontend/assets/github.png and /dev/null differ diff --git a/frontend/assets/moz-fav-bw-rgb.png b/frontend/assets/moz-fav-bw-rgb.png deleted file mode 100644 index b0521009c..000000000 Binary files a/frontend/assets/moz-fav-bw-rgb.png and /dev/null differ diff --git a/frontend/assets/moz-logo-black.png b/frontend/assets/moz-logo-black.png deleted file mode 100644 index 81cf0eef6..000000000 Binary files a/frontend/assets/moz-logo-black.png and /dev/null differ diff --git a/frontend/package.json b/frontend/package.json deleted file mode 100644 index 6ab31e499..000000000 --- a/frontend/package.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "name": "code-coverage-reports", - "version": "1.1.12", - "description": "Mozilla Code Coverage frontend", - "main": "index.js", - "scripts": { - "build": "webpack", - "release": "webpack --config webpack.prod.js", - "start": "webpack-dev-server --open", - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/mozilla/code-coverage-reports.git" - }, - "author": "", - "license": "MPL-2.0", - "bugs": { - "url": "https://github.com/mozilla/code-coverage-reports/issues" - }, - "homepage": "https://github.com/mozilla/code-coverage-reports#readme", - "devDependencies": { - "@babel/core": "^7.5.4", - "@babel/preset-env": "^7.5.4", - "babel-loader": "^8.0.6", - "babel-plugin-prismjs": "^2.0.0", - "babel-polyfill": "^6.26.0", - "clean-webpack-plugin": "^3.0.0", - "css-loader": "^3.0.0", - "eslint": "^6.2.2", - "eslint-config-prettier": "^6.2.0", - "eslint-config-standard": "^14.1.0", - "eslint-loader": "^4.0.0", - "eslint-plugin-fetch-options": "0.0.5", - "eslint-plugin-html": "^6.0.0", - "eslint-plugin-mozilla": "^2.1.0", - "eslint-plugin-no-unsanitized": "^3.0.2", - "eslint-plugin-prettier": "^3.1.0", - "file-loader": "^6.0.0", - "html-webpack-plugin": "^4.0.1", - "mini-css-extract-plugin": "^0.9.0", - "node-sass": "^4.12.0", - "optimize-css-assets-webpack-plugin": "^5.0.3", - "prettier": "1.19.1", - "sass-loader": "^9.0.1", - "standard": "^14.1.0", - "terser-webpack-plugin": "^3.0.0", - "webpack": "^4.40.2", - "webpack-cli": "^3.3.6", - "webpack-dev-server": "^3.7.2", - "webpack-merge": "^4.2.1" - }, - "dependencies": { - "chartist": "^0.11.3", - "mustache": "^4.0.0", - "normalize.css": "^8.0.1", - "prismjs": "^1.16.0" - } -} diff --git a/frontend/screenshot.png b/frontend/screenshot.png deleted file mode 100644 index f649acbf3..000000000 Binary files a/frontend/screenshot.png and /dev/null differ diff --git a/frontend/src/base.html b/frontend/src/base.html deleted file mode 100644 index b13255f0e..000000000 --- a/frontend/src/base.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - -mozilla-central coverage - - - - - - - - - - - - - - - -
- - -
- -
-
Loading...
-
-
-
Hover a point to see its details
-
-
-
- - - - - diff --git a/frontend/src/common.js b/frontend/src/common.js deleted file mode 100644 index 8d4666369..000000000 --- a/frontend/src/common.js +++ /dev/null @@ -1,388 +0,0 @@ -import Mustache from "mustache"; -import { buildRoute, readRoute } from "./route.js"; -import { ZERO_COVERAGE_FILTERS } from "./zero_coverage_report.js"; - -export const REV_LATEST = "latest"; - -function domContentLoaded() { - return new Promise(resolve => - document.addEventListener("DOMContentLoaded", resolve) - ); -} -export const DOM_READY = domContentLoaded(); - -export async function main(load, display) { - // Load initial data before DOM is available - const data = await load(); - - // Wait for DOM to be ready before displaying - await DOM_READY; - await display(data); - - // Full workflow, loading then displaying data - // used for following updates - const full = async function() { - const data = await load(); - await display(data); - }; - - // React to url changes - window.onhashchange = full; -} - -// Coverage retrieval. - -const COVERAGE_BACKEND_HOST = process.env.BACKEND_URL; - -function cacheGet(cache, key) { - if (key in cache) { - return cache[key].val; - } - return null; -} - -function cacheSet(cache, key, value) { - const now = new Date().getTime() / 1000; - - // If the cache got too big, remove all elements that were added more - // than 15 minutes ago. - if (Object.keys(cache).length > 100) { - for (const key in cache) { - if (cache[key].time < now - 15 * 60) { - delete cache[key]; - } - } - } - - cache[key] = { - val: value, - time: now - }; -} - -const pathCoverageCache = {}; -export async function getPathCoverage(path, changeset, platform, suite) { - const cacheKey = `${changeset}_${path}_${platform}_${suite}`; - let data = cacheGet(pathCoverageCache, cacheKey); - if (data) { - return data; - } - - let params = `path=${path}`; - if (changeset && changeset !== REV_LATEST) { - params += `&changeset=${changeset}`; - } - if (platform && platform !== "all") { - params += `&platform=${platform}`; - } - if (suite && suite !== "all") { - params += `&suite=${suite}`; - } - const response = await fetch( - `${COVERAGE_BACKEND_HOST}/v2/path?${params}` - ).catch(alert); - if (response.status !== 200) { - throw new Error(response.status + " - " + response.statusText); - } - data = await response.json(); - - cacheSet(pathCoverageCache, cacheKey, data); - - return data; -} - -const historyCache = {}; -export async function getHistory(path, platform, suite) { - // Backend needs path without trailing / - if (path && path.endsWith("/")) { - path = path.substring(0, path.length - 1); - } - - const cacheKey = `${path}_${platform}_${suite}`; - let data = cacheGet(historyCache, cacheKey); - if (data) { - return data; - } - - let params = `path=${path}`; - if (platform && platform !== "all") { - params += `&platform=${platform}`; - } - if (suite && suite !== "all") { - params += `&suite=${suite}`; - } - const response = await fetch(`${COVERAGE_BACKEND_HOST}/v2/history?${params}`); - data = await response.json(); - - cacheSet(historyCache, cacheKey, data); - - // Check data has coverage values - // These values are missing when going above 2 levels right now - const coverage = data.filter(point => { - return point.coverage !== null; - }); - if (coverage.length === 0) { - console.warn(`No history data for ${path}`); - return null; - } - - return data; -} - -const zeroCoverageCache = {}; -export async function getZeroCoverageData() { - let data = cacheGet(zeroCoverageCache, ""); - if (data) { - return data; - } - - const response = await fetch( - "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.relman.code-coverage.production.cron.latest/artifacts/public/zero_coverage_report.json" - ); - data = await response.json(); - - cacheSet(zeroCoverageCache, "", data); - - return data; -} - -const filtersCache = {}; -export async function getFilters() { - let data = cacheGet(filtersCache, ""); - if (data) { - return data; - } - - const response = await fetch(`${COVERAGE_BACKEND_HOST}/v2/filters`); - data = await response.json(); - - cacheSet(filtersCache, "", data); - - return data; -} - -// Option handling. - -export function isEnabled(opt) { - const route = readRoute(); - let value = "off"; - if (route[opt]) { - value = route[opt]; - } else if (ZERO_COVERAGE_FILTERS[opt]) { - value = ZERO_COVERAGE_FILTERS[opt].default_value; - } - return value === "on"; -} - -// hgmo. -const sourceCache = {}; -export async function getSource(file, revision) { - if (!revision || revision === "latest") { - revision = "tip"; - } - const url = `https://hg.mozilla.org/mozilla-central/raw-file/${revision}/${file}`; - - let source = cacheGet(sourceCache, url); - if (source) { - return source; - } - - const response = await fetch(url); - source = await response.text(); - source = source.split("\n"); - - cacheSet(sourceCache, url, source); - - return source; -} - -// Filtering. - -const getThirdPartyPaths = (function() { - let paths = null; - return async function() { - if (!paths) { - const response = await getSource("tools/rewriting/ThirdPartyPaths.txt"); - paths = response.split("\n").filter(path => path !== ""); - } - - return paths; - }; -})(); - -export async function filterThirdParty(files) { - if (isEnabled("third_party")) { - return files; - } - - const paths = await getThirdPartyPaths(); - - return files.filter(file => { - for (const path of paths) { - if (file.path.startsWith(path)) { - return false; - } - } - - return true; - }); -} - -export function filterLanguages(files) { - const cpp = isEnabled("cpp"); - const cppExtensions = [ - "c", - "cpp", - "cxx", - "cc", - "h", - "hh", - "hxx", - "hpp", - "inl", - "inc" - ]; - const js = isEnabled("js"); - const jsExtensions = ["js", "jsm", "xml", "xul", "xhtml", "html"]; - const java = isEnabled("java"); - const javaExtensions = ["java"]; - const rust = isEnabled("rust"); - const rustExtensions = ["rs"]; - - return files.filter(file => { - if (file.type === "directory") { - return true; - } else if (cppExtensions.find(ext => file.path.endsWith("." + ext))) { - return cpp; - } else if (jsExtensions.find(ext => file.path.endsWith("." + ext))) { - return js; - } else if (rustExtensions.find(ext => file.path.endsWith("." + ext))) { - return rust; - } else if (javaExtensions.find(ext => file.path.endsWith("." + ext))) { - return java; - } - console.warn("Unknown language for " + file.path); - return false; - }); -} - -export function filterHeaders(files) { - if (isEnabled("headers")) { - return files; - } - - return files.filter(file => !file.path.endsWith(".h")); -} - -export function filterCompletelyUncovered(files) { - if (!isEnabled("completely_uncovered")) { - return files; - } - - return files.filter(file => file.uncovered); -} - -export function filterLastPushDate(files) { - const elem = document.getElementById("last_push"); - const upperLimit = new Date(); - let lowerLimit = new Date(); - - if (elem.value === "one_year") { - lowerLimit.setFullYear(upperLimit.getFullYear() - 1); - } else if (elem.value === "two_years") { - upperLimit.setFullYear(upperLimit.getFullYear() - 1); - lowerLimit.setFullYear(lowerLimit.getFullYear() - 2); - } else if (elem.value === "older_than_two_years") { - upperLimit.setFullYear(upperLimit.getFullYear() - 2); - lowerLimit = new Date("1970-01-01T00:00:00Z"); - } else { - return files; - } - - return files.filter(file => { - const lastPushDate = new Date(file.lastPushDate); - if ( - lastPushDate.getTime() <= upperLimit.getTime() && - lastPushDate.getTime() >= lowerLimit.getTime() - ) { - return true; - } - return false; - }); -} - -// Build the urls for a breadcrumb Navbar from a path -export function buildNavbar(path, revision) { - if (path.endsWith("/")) { - path = path.substring(0, path.length - 1); - } - let base = ""; - const links = [ - { - name: "mozilla-central", - route: buildRoute({ path: "", revision }) - } - ]; - return links.concat( - path.split("/").map(file => { - base += (base ? "/" : "") + file; - return { - name: file, - route: buildRoute({ path: base, view: "directory", revision }) - }; - }) - ); -} - -// Display helpers -function canDisplay() { - return document.readyState === "complete"; -} - -export function message(cssClass, message) { - if (!canDisplay()) { - return; - } - - const box = document.getElementById("message"); - box.className = "message " + cssClass; - box.textContent = message; - box.style.display = "inherit"; -} - -export function hide(id) { - if (!canDisplay()) { - return; - } - - const box = document.getElementById(id); - box.style.display = "none"; -} - -export function show(id, node) { - if (!canDisplay()) { - return null; - } - - const box = document.getElementById(id); - box.style.display = "inherit"; - if (node) { - box.replaceWith(node); - } - return box; -} - -export function render(template, data, target) { - const output = Mustache.render( - document.getElementById(template).innerHTML, - data - ); - const box = document.getElementById(target); - - // The innerHTML check is disabled because we trust Mustache output - // eslint-disable-next-line no-unsanitized/property - box.innerHTML = output; - - box.style.display = "inherit"; - return box; -} diff --git a/frontend/src/index.js b/frontend/src/index.js deleted file mode 100644 index fa22d2ad1..000000000 --- a/frontend/src/index.js +++ /dev/null @@ -1,303 +0,0 @@ -import { - REV_LATEST, - DOM_READY, - main, - show, - hide, - message, - getPathCoverage, - getHistory, - getZeroCoverageData, - buildNavbar, - render, - getSource, - getFilters -} from "./common.js"; -import { buildRoute, monitorOptions, readRoute, updateRoute } from "./route.js"; -import { - zeroCoverageDisplay, - zeroCoverageMenu -} from "./zero_coverage_report.js"; -import "normalize.css/normalize.css"; -import "./style.scss"; -import Prism from "prismjs"; -import Chartist from "chartist"; -import "chartist/dist/chartist.css"; - -const VIEW_ZERO_COVERAGE = "zero"; -const VIEW_DIRECTORY = "directory"; -const VIEW_FILE = "file"; - -function browserMenu(revision, filters, route) { - const context = { - revision, - platforms: filters.platforms.map(p => { - return { - name: p, - selected: p === route.platform - }; - }), - suites: filters.suites.map(s => { - return { - name: s, - selected: s === route.suite - }; - }) - }; - render("menu_browser", context, "menu"); -} - -async function graphHistory(history, path) { - if (history === null) { - message("warning", `No history data for ${path}`); - return; - } - - const dateStr = function(timestamp) { - const date = new Date(timestamp); - return `${date.getDate()}/${date.getMonth() + 1}/${date.getFullYear()}`; - }; - - var data = { - series: [ - { - name: "History", - data: history.map(push => { - return { - x: push.date * 1000, - y: push.coverage - }; - }) - } - ] - }; - var config = { - // Display dates on a linear scale - axisX: { - type: Chartist.FixedScaleAxis, - divisor: 20, - labelInterpolationFnc: dateStr - }, - - // Fix display bug when points are too close - lineSmooth: Chartist.Interpolation.cardinal({ - tension: 1 - }) - }; - const elt = show("history").querySelector(".ct-chart"); - const chart = new Chartist.Line(elt, data, config); - - chart.on("draw", function(evt) { - if (evt.type === "point") { - // Load revision from graph when a point is clicked - const revision = history[evt.index].changeset; - evt.element._node.onclick = function() { - updateRoute({ revision }); - }; - - // Display revision from graph when a point is overed - evt.element._node.onmouseover = function() { - const ctx = { - revision: revision.substring(0, 12), - date: dateStr(evt.value.x) - }; - render("history_point", ctx, "history_details"); - }; - } - }); -} - -async function showDirectory(dir, revision, files) { - const context = { - navbar: buildNavbar(dir, revision), - files: files.map(file => { - file.route = buildRoute({ - path: file.path, - view: file.type - }); - - // Calc decimal range to make a nice coloration - file.coveragePercent = Math.floor(file.coveragePercent); - file.range = parseInt(file.coveragePercent / 10) * 10; - return file; - }), - revision: revision || REV_LATEST, - file_name() { - // Build filename relative to current dir - if (dir) { - // Remove extra / only when present - const offset = dir[dir.length - 1] === "/" ? 0 : 1; - return this.path.substring(dir.length + offset); - } - - return this.path; - } - }; - render("file_browser", context, "output"); -} - -async function showFile(source, file, revision, selectedLine) { - selectedLine = selectedLine !== undefined ? parseInt(selectedLine) : -1; - - let language; - if (file.path.endsWith("cpp") || file.path.endsWith("h")) { - language = "cpp"; - } else if (file.path.endsWith("c")) { - language = "c"; - } else if (file.path.endsWith("js") || file.path.endsWith("jsm")) { - language = "javascript"; - } else if (file.path.endsWith("css")) { - language = "css"; - } else if (file.path.endsWith("py")) { - language = "python"; - } else if (file.path.endsWith("java")) { - language = "java"; - } - - const context = { - navbar: buildNavbar(file.path, revision), - language, - lines: source.map((line, nb) => { - const coverage = file.coverage[nb]; - let cssClass = ""; - let hits = null; - if (coverage !== undefined && coverage >= 0) { - cssClass = coverage > 0 ? "covered" : "uncovered"; - - // Build a nicer coverage string for counts - if (coverage >= 1000000) { - hits = { - nb: parseInt(coverage / 1000000), - unit: "M" - }; - } else if (coverage >= 1000) { - hits = { - nb: parseInt(coverage / 1000), - unit: "k" - }; - } else if (coverage > 0) { - hits = { - nb: coverage, - unit: "" - }; - } - } - - // To make line numbers start from 1 - nb = nb + 1; - - // Override css class when selected - if (nb === selectedLine) { - cssClass = "selected"; - } - return { - nb, - hits, - coverage, - line: line || " ", - css_class: cssClass, - route: buildRoute({ line: nb }) - }; - }) - }; - - hide("message"); - hide("history"); - const output = render("file_coverage", context, "output"); - - // Scroll to line - if (selectedLine > 0) { - const line = output.querySelector("#l" + selectedLine); - line.scrollIntoView({ - behavior: "smooth", - block: "center" - }); - } - - // Highlight source code once displayed - Prism.highlightAll(output); -} - -async function load() { - const route = readRoute(); - - // Reset display, dom-safe - hide("history"); - hide("output"); - message( - "loading", - "Loading coverage data for " + - (route.path || "mozilla-central") + - " @ " + - (route.revision || REV_LATEST) - ); - - // Load only zero coverage for that specific view - if (route.view === VIEW_ZERO_COVERAGE) { - const zeroCoverage = await getZeroCoverageData(); - return { - view: VIEW_ZERO_COVERAGE, - path: route.path, - zeroCoverage, - route - }; - } - - // Default to directory view on home - if (!route.view) { - route.view = VIEW_DIRECTORY; - } - - try { - const viewContent = - route.view === VIEW_DIRECTORY - ? getHistory(route.path, route.platform, route.suite) - : getSource(route.path, route.revision); - var [coverage, filters, viewData] = await Promise.all([ - getPathCoverage(route.path, route.revision, route.platform, route.suite), - getFilters(), - viewContent - ]); - } catch (err) { - console.warn("Failed to load coverage", err); - await DOM_READY; // We want to always display this message - message("error", "Failed to load coverage: " + err.message); - throw err; - } - return { - view: route.view, - path: route.path, - revision: route.revision, - route, - coverage, - filters, - viewData - }; -} - -export async function display(data) { - if (data.view === VIEW_ZERO_COVERAGE) { - await zeroCoverageMenu(data.route); - await zeroCoverageDisplay(data.zeroCoverage, data.path); - } else if (data.view === VIEW_DIRECTORY) { - hide("message"); - browserMenu(data.revision, data.filters, data.route); - await graphHistory(data.viewData, data.path); - await showDirectory(data.path, data.revision, data.coverage.children); - } else if (data.view === VIEW_FILE) { - browserMenu(data.revision, data.filters, data.route); - await showFile( - data.viewData, - data.coverage, - data.revision, - data.route.line - ); - } else { - message("error", "Invalid view : " + data.view); - } - - // Always monitor options on newly rendered output - monitorOptions(data); -} - -main(load, display); diff --git a/frontend/src/route.js b/frontend/src/route.js deleted file mode 100644 index 81328afa2..000000000 --- a/frontend/src/route.js +++ /dev/null @@ -1,93 +0,0 @@ -import { REV_LATEST } from "./common.js"; -import { display } from "./index.js"; - -export function readRoute() { - // Reads all filters from current URL hash - const hash = window.location.hash.substring(1); - const pairs = hash.split("&"); - const out = {}; - pairs.forEach(pair => { - const [key, value] = pair.split("="); - if (!key) { - return; - } - out[decodeURIComponent(key)] = decodeURIComponent(value); - }); - - // Default values - if (!out.revision) { - out.revision = REV_LATEST; - } - if (!out.path) { - out.path = ""; - } - - return out; -} - -export function buildRoute(params) { - // Add all params on top of current route - let route = readRoute(); - if (params) { - route = { ...route, ...params }; - } - - // Build query string from filters - return ( - "#" + - Object.keys(route) - .map(k => encodeURIComponent(k) + "=" + encodeURIComponent(route[k])) - .join("&") - ); -} - -export function updateRoute(params) { - // Update full hash with an updated url - // Will trigger full load + display update - window.location.hash = buildRoute(params); -} - -export async function updateRouteImmediate(hash, data) { - // Will trigger only a display update, no remote data will be fetched - - // Update route without reloading content - history.pushState(null, null, hash); - - // Update the route stored in data - data.route = readRoute(); - await display(data); -} - -export function monitorOptions(currentData) { - // Monitor input & select changes - const fields = document.querySelectorAll("input, select, a.scroll"); - for (const field of fields) { - if (field.classList.contains("scroll")) { - // On a scroll event, update display without any data loading - field.onclick = async evt => { - evt.preventDefault(); - updateRouteImmediate(evt.target.hash, currentData); - }; - } else if (field.type === "text") { - // React on enter - field.onkeydown = async evt => { - if (evt.keyCode === 13) { - const params = {}; - params[evt.target.name] = evt.target.value; - updateRoute(params); - } - }; - } else { - // React on change - field.onchange = async evt => { - let value = evt.target.value; - if (evt.target.type === "checkbox") { - value = evt.target.checked ? "on" : "off"; - } - const params = {}; - params[evt.target.name] = value; - updateRoute(params); - }; - } - } -} diff --git a/frontend/src/style.scss b/frontend/src/style.scss deleted file mode 100644 index 6076083c5..000000000 --- a/frontend/src/style.scss +++ /dev/null @@ -1,453 +0,0 @@ -// Configuration -$default_color: #4a4a4a; -$link_color: #0081ad; -$background_color: #eff7fc; -$row_height: 1.8em; -$header_height: 50px; -$footer_height: 60px; -$coverage_low: #d91a47; -$coverage_warn: #ff9a36; -$coverage_good: #438718; -$highlighted: #f7f448; -$small_screen: 1280px; - -body { - // Setup base typography - color: $default_color; - font-size: 1em; - font-weight: 400; - line-height: 1.5; - text-rendering: optimizeLegibility; - font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - - background-color: white; - - // For footer - display: flex; - min-height: 100vh; - flex-direction: column; -} - -a { - text-decoration: none; - color: $link_color; - - &:hover { - color: lighten($link_color, 10%); - } -} - -header { - background-color: $background_color; - border-bottom: 1px solid darkgray; - min-height: $header_height; - - $horizontal_margin: 10px; - - div.logo { - display: inline-block; - height: $header_height; - line-height: $header_height; - margin-left: $horizontal_margin; - - img { - margin: $header_height * 0.1; - max-height: $header_height * 0.8; - } - - a { - color: $default_color; - line-height: $header_height; - font-size: $header_height * 0.6; - vertical-align: top; - } - - // On smaller screens, hide "Code coverage" link & display a smaller logo - @media only screen and (max-width: $small_screen) { - img { - max-height: $header_height * 0.6; - } - a { - display: none; - } - } - } - - div#menu { - float: right; - height: $header_height; - line-height: $header_height; - margin-right: $horizontal_margin; - } - - input.revision { - width: 170px; - font-family: monospace; - } -} - -footer { - text-align: center; - background: darken($background_color, 60%); - min-height: $footer_height; - line-height: $footer_height; - border-top: 1px solid darkgray; - - img { - //padding-top: 0.2 * $footer_height; - vertical-align: middle; - max-height: 0.75 * $footer_height; - } - - a { - color: lighten($link_color, 50%); - } -} - -#main { - // Main element on flex display - flex: 1; - - div.message { - border-radius: 5px; - padding: 10px; - color: white; - width: 40%; - margin: 30px auto; - - &.loading { - background: #209cee; - } - - &.warning { - background: #c48404; - } - - &.error { - background: #ff3860; - } - } -} - -// Breadcrumb navigation -nav { - margin-right: 5px; - - a:not(:last-child)::after { - content: "/"; - color: #CCC; - margin: 0 2px; - } -} - -// Directory navigation -#browser { - max-width: $small_screen; - margin: 0 auto; - padding: .5em; - - .table { - display: table; - width: 100%; - - div { - display: table-row; - height: $row_height; - line-height: $row_height; - - > { - :first-child { - text-align: left; - } - - :last-child { - text-align: right; - } - } - - &.header { - span { - font-weight: bold; - } - } - - span { - padding: 0 3px; - text-align: center; - height: $row_height; - line-height: $row_height; - display: table-cell; - - &.coverage_0 { - color: $coverage_low; - } - &.coverage_10 { - color: lighten($coverage_low, 10%); - } - &.coverage_20 { - color: lighten($coverage_low, 20%); - } - &.coverage_30 { - color: lighten($coverage_low, 30%); - } - &.coverage_40 { - color: darken($coverage_warn, 10%); - } - &.coverage_50 { - color: $coverage_warn; - } - &.coverage_60 { - color: lighten($coverage_warn, 10%); - } - &.coverage_70 { - color: lighten($coverage_good, 30%); - } - &.coverage_80 { - color: lighten($coverage_good, 20%); - } - &.coverage_90 { - color: lighten($coverage_good, 10%); - } - &.coverage_100 { - color: $coverage_good; - } - } - - &.row { - &:nth-child(2n+3) { - background: hsl(0, 0%, 98%); - } - - &:hover { - background-color: hsl(0, 0%, 96%); - } - } - } - } - - // Navbar with stats - h2 { - width: 100%; - - nav, span { - display: inline-block; - margin-right: 3px; - } - } -} - -// File coverage -$covered_color: #e7ffd9; -$uncovered_color: #ffc8bd; -$no_data_color: hsl(0, 0%, 98%); -$samp_size: 20px; -#file { - div.help { - position: fixed; - top: 70px; - right: 20px; - background: rgba(0, 0, 0, 0.2); - border-radius: 5px; - height: 2 * $samp_size; - line-height: 2 * $samp_size; - - p { - display: inline-block; - margin: 0 6px; - padding: 0; - - span { - margin-left: 2px; - vertical-align: top; - } - - samp { - display: inline-block; - margin-top: $samp_size / 2; - width: $samp_size; - height: $samp_size; - border: 1px solid darkgray; - } - - &.no_data samp { - background: $no_data_color; - } - &.uncovered samp { - background: $uncovered_color; - } - &.covered samp { - background: $covered_color; - } - } - } - - table { - width: 100%; - border-collapse: collapse; - border-spacing: 0; - - tr { - * { - padding: 0; - margin: 0; - } - - td { - font-size: 0.9em; - background: $no_data_color; - } - - pre { - padding: 1px 2px; - - // To override prism settings - border-radius: 0px 0px; - background: $no_data_color; - } - - // Line number - td:first-child { - color: grey; - font-size: 1em; - vertical-align: middle; - border-right: 1px solid #CCC; - font-family: monospace; - background: #f5f2f0; - padding: 0 2px; - } - - // Line coverage stats - td:last-child { - padding-right: 3px; - text-align: right; - - span { - padding: 2px; - color: white; - font-size: 0.9em; - font-weight: bold; - border-radius: 3px; - background: #363636; - - &.k { - background: #209cee; - } - &.M { - background: #3273dc; - } - } - } - - &.covered { - td { - background: darken($covered_color, 10%); - } - - pre { - background: $covered_color; - } - } - - &.uncovered { - td { - background: darken($uncovered_color, 10%); - } - - pre { - background: $uncovered_color; - } - } - - &.selected { - font-weight: bold; - td { - background: $highlighted; - } - - pre { - background: $highlighted; - } - } - } - } -} - -// History graph -#history { - .ct-chart { - width: 100%; - height: 200px; - } - - .ct-point { - stroke: #6fc0f2; - cursor: pointer; - } - - .ct-line { - stroke: #ccf2ff; - } - - .ct-point:hover { - stroke: #d91e44; - } - - #history_details { - color: darkgrey; - margin-right: 20px; - float: right; - } -} - -// Tooltip container for explanation (issue #97 enhancement) -#menu .tooltip { - position: relative; - display: inline-block; - - // Question mark container - .questionbox { - text-align: center; - border-bottom: 1px dotted black; - cursor: default; - } - - // Show the tooltip text when you mouse over the tooltip container - &:hover .tooltiptext { - visibility: visible; - opacity: 1; - } - - .tooltiptext { - visibility: hidden; - line-height: 120%; - background-color: $default_color; - color: white; - text-align: left; - padding: 1vh 1vw; - border-radius: 6px; - box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); - - // Position the tooltip - position: absolute; - z-index: 1; - width: 30vw; - top: 100%; - left: 50%; - margin-left: -16vw; // Use half of the width including left horizontal padding size i.e 30vw/2 + 1vw - - &::after { - content: " "; - position: absolute; - bottom: 100%; /* At the top of the tooltip */ - left: 50%; - margin-left: -5px; - border-width: 5px; - border-style: solid; - border-color: transparent transparent $default_color transparent; - } - - // Transition animation - opacity: 0; - transition: opacity 1s; - } -} diff --git a/frontend/src/zero_coverage_report.js b/frontend/src/zero_coverage_report.js deleted file mode 100644 index ea356854d..000000000 --- a/frontend/src/zero_coverage_report.js +++ /dev/null @@ -1,198 +0,0 @@ -import { - hide, - message, - buildNavbar, - isEnabled, - render, - filterThirdParty, - filterLanguages, - filterHeaders, - filterCompletelyUncovered, - filterLastPushDate -} from "./common.js"; -import { buildRoute } from "./route.js"; - -export const ZERO_COVERAGE_FILTERS = { - third_party: { - name: "Show third-party files", - default_value: "on" - }, - headers: { - name: "Show headers", - default_value: "off" - }, - completely_uncovered: { - name: "Show completely uncovered files only", - default_value: "off" - }, - cpp: { - name: "C/C++", - default_value: "on" - }, - js: { - name: "JavaScript", - default_value: "on" - }, - java: { - name: "Java", - default_value: "on" - }, - rust: { - name: "Rust", - default_value: "on" - } -}; -const ZERO_COVERAGE_PUSHES = { - all: "All", - one_year: "0 < 1 year", - two_years: "1 < 2 years", - older_than_two_years: "Older than 2 years" -}; - -export function zeroCoverageMenu(route) { - const context = { - filters: Object.entries(ZERO_COVERAGE_FILTERS).map(([key, filter]) => { - return { - key, - message: filter.name, - checked: isEnabled(key), - needs_explanation: key === "completely_uncovered" - }; - }), - last_pushes: Object.entries(ZERO_COVERAGE_PUSHES).map( - ([value, message]) => { - return { - value, - message, - selected: route.last_push === value - }; - } - ) - }; - render("menu_zero", context, "menu"); -} - -function sortEntries(entries) { - return entries - .sort(([dir1, stats1], [dir2, stats2]) => { - if (stats1.children !== stats2.children) { - return stats1.children < stats2.children; - } - - if (stats1.funcs !== stats2.funcs) { - return stats1.funcs < stats2.funcs; - } - - return dir1 > dir2; - }) - .map(([dir, stats]) => { - return { stats, dir }; - }); -} - -function getMinDate(oldDate, newDate) { - if (!oldDate) { - return newDate; - } - if (Date.parse(newDate) < Date.parse(oldDate)) { - return newDate; - } - - return oldDate; -} - -function getBaseStats(file, children) { - return { - children, - funcs: file.funcs, - first_push_date: file.first_push_date, - last_push_date: file.last_push_date, - size: file.size, - commits: file.commits - }; -} - -function cumStats(prevStats, newStats) { - prevStats.children += 1; - prevStats.funcs += newStats.funcs; - prevStats.size += newStats.size; - prevStats.commits += newStats.commits; - prevStats.first_push_date = getMinDate( - prevStats.first_push_date, - newStats.first_push_date - ); - prevStats.last_push_date = getMinDate( - prevStats.last_push_date, - newStats.last_push_date - ); -} - -export async function zeroCoverageDisplay(data, dir) { - hide("output"); - hide("history"); - message( - "loading", - "Loading zero coverage report for " + (dir || "mozilla-central") - ); - - while (dir.endsWith("/")) { - dir = dir.substring(0, dir.length - 1); - } - dir += "/"; - if (dir === "/") { - dir = ""; - } - - let files = data.files.filter(file => file.name.startsWith(dir)); - // TODO: Do this in the backend directly! - files.forEach(file => { - file.path = file.name; - }); - files = await filterThirdParty(files); - files = filterLanguages(files); - files = filterHeaders(files); - files = filterCompletelyUncovered(files); - files = filterLastPushDate(files); - - const map = new Map(); - - for (const file of files) { - let rest = file.path.substring(dir.lastIndexOf("/") + 1); - - if (rest.includes("/")) { - rest = rest.substring(0, rest.indexOf("/")); - if (map.has(rest)) { - cumStats(map.get(rest), file); - } else { - map.set(rest, getBaseStats(file, 1)); - } - } else { - if (map.has(rest)) { - console.warn(rest + " is already in map."); - } - map.set(rest, getBaseStats(file, 0)); - } - } - - const revision = data.hg_revision; - const context = { - current_dir: dir, - entries: sortEntries(Array.from(map.entries())), - entry_url() { - const path = dir + this.dir; - if (this.stats.children !== 0) { - return buildRoute({ - view: "zero", - path - }); - } - // Fully reset the url when moving back to file view - return `#view=file&revision=${revision}&path=${path}`; - }, - navbar: buildNavbar(dir), - total: files.length - }; - - hide("message"); - render("zerocoverage", context, "output"); -} diff --git a/frontend/webpack.common.js b/frontend/webpack.common.js deleted file mode 100644 index fbd69591c..000000000 --- a/frontend/webpack.common.js +++ /dev/null @@ -1,76 +0,0 @@ -const path = require('path'); -const webpack = require('webpack'); -const { CleanWebpackPlugin } = require('clean-webpack-plugin'); -const HtmlWebpackPlugin = require('html-webpack-plugin') -const MiniCssExtractPlugin = require('mini-css-extract-plugin'); - - -module.exports = { - entry: ['babel-polyfill', 'index.js'], - output: { - path: __dirname + '/dist', - filename: 'coverage-[hash].js' - }, - plugins: [ - new CleanWebpackPlugin(), - new HtmlWebpackPlugin({ - template: 'src/base.html', - }), - new MiniCssExtractPlugin({ - filename: 'coverage-[hash].css', - }), - new webpack.EnvironmentPlugin({ - BACKEND_URL: 'http://localhost:8000', - }), - ], - module: { - rules: [ - { - enforce: 'pre', - test: /\.js$/, - exclude: /node_modules/, - loader: 'eslint-loader', - }, - { - test: /\.js$/, - exclude: /(node_modules)/, - use: { - loader: 'babel-loader', - options: { - presets: ['@babel/preset-env'] - } - } - }, - { - test: /\.s[ac]ss$/i, - use: [ - MiniCssExtractPlugin.loader, - 'css-loader', - 'sass-loader', - ], - }, - { - test: /\.css$/i, - use: [MiniCssExtractPlugin.loader, 'css-loader'], - }, - { - test: /\.(png|svg|jpg|gif)$/, - use: [ - 'file-loader' - ] - }, - ], - }, - devServer: { - contentBase: path.join(__dirname, 'dist'), - compress: true, - port: 9000 - }, - resolve: { - modules: [ - path.join(__dirname, 'node_modules'), - path.join(__dirname, 'assets'), - path.join(__dirname, 'src'), - ], - }, -} diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js deleted file mode 100644 index 849d71fef..000000000 --- a/frontend/webpack.config.js +++ /dev/null @@ -1,10 +0,0 @@ -const merge = require('webpack-merge'); -const common = require('./webpack.common.js'); - -module.exports = merge(common, { - mode: 'development', - devtool: 'inline-source-map', - devServer: { - contentBase: './dist' - } -}); diff --git a/frontend/webpack.prod.js b/frontend/webpack.prod.js deleted file mode 100644 index b48949dea..000000000 --- a/frontend/webpack.prod.js +++ /dev/null @@ -1,16 +0,0 @@ -const merge = require('webpack-merge'); -const common = require('./webpack.common.js'); -const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin'); -const TerserJSPlugin = require('terser-webpack-plugin'); - -module.exports = merge(common, { - mode: 'production', - optimization: { - minimizer: [ - new TerserJSPlugin({ - extractComments: false, - }), - new OptimizeCSSAssetsPlugin({}) - ], - }, -}); diff --git a/frontend/zero_coverage_report.html b/frontend/zero_coverage_report.html deleted file mode 100644 index bd6d0637c..000000000 --- a/frontend/zero_coverage_report.html +++ /dev/null @@ -1,5 +0,0 @@ - - -Redirecting to zero coverage report - - diff --git a/report/.gitignore b/report/.gitignore deleted file mode 100644 index c70ba33fb..000000000 --- a/report/.gitignore +++ /dev/null @@ -1,27 +0,0 @@ -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -pip-wheel-metadata/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST -cache/ -ccov-artifacts/ -grcov -grcov_ver -lcov-bin/ -lcov/ -output.info -report/ diff --git a/report/MANIFEST.in b/report/MANIFEST.in deleted file mode 100644 index 8d28c45e5..000000000 --- a/report/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -recursive-exclude * __pycache__ -recursive-exclude * *.py[co] -recursive-exclude tests * - -include VERSION -include *.txt diff --git a/report/README.md b/report/README.md deleted file mode 100644 index 4130f471d..000000000 --- a/report/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# firefox-code-coverage - -A description on how to use this tool is available at https://developer.mozilla.org/en-US/docs/Mozilla/Testing/Measuring_Code_Coverage_on_Firefox. diff --git a/report/VERSION b/report/VERSION deleted file mode 100644 index ccad953ac..000000000 --- a/report/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.1.12 diff --git a/report/ci-test.sh b/report/ci-test.sh deleted file mode 100755 index b7df8c48f..000000000 --- a/report/ci-test.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash -e - -pip install --disable-pip-version-check --no-cache-dir --quiet -r test-requirements.txt -r requirements.txt . - -python -m unittest discover tests -python setup.py sdist bdist_wheel -VERSION=$(cat VERSION) -pip install dist/firefox-code-coverage-$VERSION.tar.gz diff --git a/report/firefox_code_coverage/__init__.py b/report/firefox_code_coverage/__init__.py deleted file mode 100644 index 212e90bdb..000000000 --- a/report/firefox_code_coverage/__init__.py +++ /dev/null @@ -1,8 +0,0 @@ -# -*- coding: utf-8 -*- - -from taskcluster.helper import TaskclusterConfig - -taskcluster = TaskclusterConfig("https://firefox-ci-tc.services.mozilla.com") - -# Force root url to avoid proxy as grcov is not available on Community instance -taskcluster.options = {"rootUrl": taskcluster.default_url} diff --git a/report/firefox_code_coverage/codecoverage.py b/report/firefox_code_coverage/codecoverage.py deleted file mode 100644 index d708b822d..000000000 --- a/report/firefox_code_coverage/codecoverage.py +++ /dev/null @@ -1,473 +0,0 @@ -# -*- coding: utf-8 -*- - -import argparse -import errno -import json -import logging -import os -import shutil -import subprocess -import sys -import tarfile -import tempfile -import time -import warnings -from datetime import timedelta -from pathlib import Path - -import magic -import requests -import tenacity - -from firefox_code_coverage import taskcluster - -FINISHED_STATUSES = ["completed", "failed", "exception"] -ALL_STATUSES = FINISHED_STATUSES + ["unscheduled", "pending", "running"] -STATUS_VALUE = {"exception": 1, "failed": 2, "completed": 3} - -GRCOV_INDEX = "gecko.cache.level-3.toolchains.v3.linux64-grcov.latest" -GRCOV_ARTIFACT = "public/build/grcov.tar.xz" - -logger = logging.getLogger(__name__) - - -def is_taskcluster_loaner(): - return "TASKCLUSTER_INTERACTIVE" in os.environ - - -def get_task(branch, revision): - index = taskcluster.get_service("index") - task = index.findTask(f"gecko.v2.{branch}.revision.{revision}.taskgraph.decision") - return task["taskId"] - - -def get_last_task(): - resp = requests.get( - "https://api.coverage.moz.tools/v2/latest?repository=mozilla-central" - ) - resp.raise_for_status() - data = resp.json() - revision = data[0]["revision"] - return get_task("mozilla-central", revision) - - -def get_task_details(task_id): - queue = taskcluster.get_service("queue") - return queue.task(task_id) - - -def get_task_artifacts(task_id): - queue = taskcluster.get_service("queue") - response = queue.listLatestArtifacts(task_id) - return response["artifacts"] - - -def get_tasks_in_group(group_id): - tasks = [] - - def _save_tasks(response): - tasks.extend(response["tasks"]) - - queue = taskcluster.get_service("queue") - queue.listTaskGroup(group_id, paginationHandler=_save_tasks) - - return tasks - - -@tenacity.retry( - stop=tenacity.stop_after_attempt(5), - wait=tenacity.wait_exponential(multiplier=1, min=16, max=64), - reraise=True, -) -def download_binary(url, path): - """Download a binary file from an url""" - - try: - artifact = requests.get(url, stream=True) - artifact.raise_for_status() - - with open(path, "wb") as f: - for chunk in artifact.iter_content(chunk_size=8192): - f.write(chunk) - - except Exception: - try: - os.remove(path) - except OSError: - pass - - raise - - -def download_artifact(task_id, artifact, artifacts_path): - fname = os.path.join( - artifacts_path, task_id + "_" + os.path.basename(artifact["name"]) - ) - - # As recommended by Taskcluster doc, use requests to download - # from the artifact public url instead of relying on the client method - queue = taskcluster.get_service("queue") - url = queue.buildUrl("getLatestArtifact", task_id, artifact["name"]) - - if not os.path.exists(fname): - download_binary(url, fname) - - return fname - - -def get_chunk(task_name): - # Some tests are run on build machines, we define placeholder chunks for those. - if task_name.startswith("build-signing-"): - return "build-signing" - elif task_name.startswith("build-"): - return "build" - - task_name = task_name[task_name.find("/") + 1 :] - return "-".join( - p for p in task_name.split("-") if p not in ("opt", "debug", "e10s", "1proc") - ) - - -def get_suite(task_name): - return "-".join(p for p in get_chunk(task_name).split("-") if not p.isdigit()) - - -def get_platform(task_name): - if "linux" in task_name: - return "linux" - elif "win" in task_name: - return "windows" - elif "macosx" in task_name: - return "macos" - else: - raise Exception(f"Unknown platform for {task_name}") - - -def get_task_status(task_id): - queue = taskcluster.get_service("queue") - status = queue.status(task_id) - return status["status"]["state"] - - -def download_coverage_artifacts( - decision_task_id, - suites, - platforms, - artifacts_path, - suites_to_ignore=["talos", "awsy"], -): - try: - os.mkdir(artifacts_path) - except OSError as e: - if e.errno != errno.EEXIST: - raise e - - task_data = get_task_details(decision_task_id) - - # Returns True if the task is a test-related coverage task (build tasks are included). - def _is_test_task(t): - return "ccov" in t["task"]["metadata"]["name"].split("/")[0].split("-") - - # Returns True if the task is part of one of the suites chosen by the user. - def _is_in_suites_task(t): - suite_name = get_suite(t["task"]["metadata"]["name"]) - return ( - suites is None or suite_name in suites - ) and suite_name not in suites_to_ignore - - def _is_in_platforms_task(t): - platform = get_platform(t["task"]["metadata"]["name"]) - return platforms is None or platform in platforms - - test_tasks = [ - t - for t in get_tasks_in_group(task_data["taskGroupId"]) - if _is_test_task(t) and _is_in_suites_task(t) and _is_in_platforms_task(t) - ] - - if suites is not None: - for suite in suites: - if not any(suite in t["task"]["metadata"]["name"] for t in test_tasks): - warnings.warn("Suite %s not found" % suite) - - download_tasks = {} - - for test_task in test_tasks: - status = test_task["status"]["state"] - assert status in ALL_STATUSES, "State '{}' not recognized".format(status) - - while status not in FINISHED_STATUSES: - sys.stdout.write( - "\rWaiting for task {} to finish...".format( - test_task["status"]["taskId"] - ) - ) - sys.stdout.flush() - time.sleep(60) - status = get_task_status(test_task["status"]["taskId"]) - # Update the task status, as we will use it to compare statuses later. - test_task["status"]["state"] = status - assert status in ALL_STATUSES - - chunk_name = get_chunk(test_task["task"]["metadata"]["name"]) - platform_name = get_platform(test_task["task"]["metadata"]["name"]) - - if (chunk_name, platform_name) not in download_tasks: - download_tasks[(chunk_name, platform_name)] = test_task - else: - prev_task = download_tasks[(chunk_name, platform_name)] - if STATUS_VALUE[status] > STATUS_VALUE[prev_task["status"]["state"]]: - download_tasks[(chunk_name, platform_name)] = test_task - - artifact_paths = [] - for i, test_task in enumerate(download_tasks.values()): - sys.stdout.write( - "\rDownloading artifacts from {}/{} test task...".format(i, len(test_tasks)) - ) - sys.stdout.flush() - artifacts = get_task_artifacts(test_task["status"]["taskId"]) - for artifact in artifacts: - if any( - a in artifact["name"] - for a in ["code-coverage-grcov.zip", "code-coverage-jsvm.zip"] - ): - artifact_paths.append( - download_artifact( - test_task["status"]["taskId"], artifact, artifacts_path - ) - ) - print("") - return artifact_paths - - -def generate_report(grcov_path, output_format, output_path, artifact_paths): - mod_env = os.environ.copy() - if is_taskcluster_loaner(): - one_click_loaner_gcc = "/home/worker/workspace/build/src/gcc/bin" - i = 0 - while ( - not os.path.isdir(one_click_loaner_gcc) - or len(os.listdir(one_click_loaner_gcc)) == 0 - ): - print("Waiting one-click loaner to be ready... " + str(i)) - i += 1 - time.sleep(60) - mod_env["PATH"] = one_click_loaner_gcc + ":" + mod_env["PATH"] - cmd = [ - grcov_path, - "-t", - output_format, - "-p", - "/home/worker/workspace/build/src/", - "-o", - output_path, - ] - if output_format in ["coveralls", "coveralls+"]: - cmd += ["--token", "UNUSED", "--commit-sha", "UNUSED"] - cmd.extend(artifact_paths) - proc = subprocess.Popen(cmd, stderr=subprocess.PIPE, env=mod_env) - i = 0 - while proc.poll() is None: - if i % 60 == 0: - sys.stdout.write("\rRunning grcov... {} seconds".format(i)) - sys.stdout.flush() - i += 1 - time.sleep(1) - print("") - - if proc.poll() != 0: - raise Exception("Error while running grcov: {}\n".format(proc.stderr.read())) - - -def download_grcov(): - local_path = "grcov" - local_version = "grcov_ver" - - dest = tempfile.mkdtemp(suffix="grcov") - archive = os.path.join(dest, "grcov.tar.xz") - index = taskcluster.get_service("index") - url = index.buildUrl("findArtifactFromTask", GRCOV_INDEX, GRCOV_ARTIFACT) - download_binary(url, archive) - - # Extract archive in temp - tar = tarfile.open(archive, "r:xz") - tar.extractall(dest) - tar.close() - os.remove(archive) - - # Get version from grcov binary - grcov = os.path.join(dest, "grcov") - assert os.path.exists(grcov), "Missing grcov binary" - version = subprocess.check_output([grcov, "--version"]).decode("utf-8") - - # Compare version with currently available - if os.path.exists(local_path) and os.path.exists(local_version): - with open(local_version, "r") as f: - installed_ver = f.read() - - if installed_ver == version: - return local_path - - # Promote downloaded version to installed one - shutil.move(grcov, local_path) - shutil.rmtree(dest) - with open(local_version, "w") as f: - f.write(version) - - return local_path - - -def upload_html_report( - report_dir, base_artifact="public/report", ttl=timedelta(days=10) -): - assert os.path.isdir(report_dir), "Not a directory {}".format(report_dir) - report_dir = os.path.realpath(report_dir) - assert not base_artifact.endswith("/"), "No trailing / in base_artifact" - - # Use Taskcluster proxy when available - taskcluster.auth() - - for path in Path(report_dir).rglob("*"): - - filename = str(path.relative_to(report_dir)) - content_type = magic.from_file(str(path), mime=True) - logger.debug("Uploading {} as {}".format(filename, content_type)) - - taskcluster.upload_artifact( - "{}/{}".format(base_artifact, filename), path.read_text(), content_type, ttl - ) - - -def main(): - parser = argparse.ArgumentParser() - - if is_taskcluster_loaner(): - nargs = "?" - default_src_dir = "/home/worker/workspace/build/src/" - default_branch = os.environ["MH_BRANCH"] - default_commit = os.environ["GECKO_HEAD_REV"] - else: - nargs = None - default_src_dir = None - default_branch = None - default_commit = None - - parser.add_argument( - "src_dir", - action="store", - nargs=nargs, - default=default_src_dir, - help="Path to the source directory", - ) - parser.add_argument( - "branch", - action="store", - nargs="?", - default=default_branch, - help="Branch on which jobs ran", - ) - parser.add_argument( - "commit", - action="store", - nargs="?", - default=default_commit, - help="Commit hash for push", - ) - parser.add_argument("--grcov", action="store", nargs="?", help="Path to grcov") - parser.add_argument( - "--with-artifacts", - action="store", - nargs="?", - default="ccov-artifacts", - help="Path to already downloaded coverage files", - ) - parser.add_argument( - "--platform", - action="store", - nargs="+", - help='List of platforms to include (by default they are all included). E.g. "linux", "windows", etc.', - ) - parser.add_argument( - "--suite", - action="store", - nargs="+", - help='List of test suites to include (by default they are all included). E.g. "mochitest", "mochitest-chrome", "gtest", etc.', - ) - parser.add_argument( - "--ignore", - action="store", - nargs="+", - help='List of test suites to ignore (by default "talos" and "awsy"). E.g. "mochitest", "mochitest-chrome", "gtest", etc.', - ) - parser.add_argument( - "--stats", - action="store_true", - help="Only generate high-level stats, not a full HTML report", - ) - parser.add_argument( - "-o", - "--output-dir", - help="The output directory for generated report", - default=os.path.join(os.getcwd(), "ccov-report"), - ) - args = parser.parse_args() - - os.makedirs(args.output_dir, exist_ok=True) - - if (args.branch is None) != (args.commit is None): - parser.print_help() - return - - if args.branch and args.commit: - task_id = get_task(args.branch, args.commit) - else: - task_id = get_last_task() - - if args.ignore is None: - artifact_paths = download_coverage_artifacts( - task_id, args.suite, args.platform, args.with_artifacts - ) - else: - artifact_paths = download_coverage_artifacts( - task_id, args.suite, args.platform, args.with_artifacts, args.ignore - ) - - if args.grcov: - grcov_path = args.grcov - else: - grcov_path = download_grcov() - - if args.stats: - output = os.path.join(args.output_dir, "output.json") - generate_report(grcov_path, "coveralls", output, artifact_paths) - - with open(output, "r") as f: - report = json.load(f) - - total_lines = 0 - total_lines_covered = 0 - for sf in report["source_files"]: - for c in sf["coverage"]: - if c is None: - continue - - total_lines += 1 - if c > 0: - total_lines_covered += 1 - - print("Coverable lines: {}".format(total_lines)) - print("Covered lines: {}".format(total_lines_covered)) - print( - "Coverage percentage: {}".format( - float(total_lines_covered) / float(total_lines) - ) - ) - else: - generate_report(grcov_path, "html", args.output_dir, artifact_paths) - - if is_taskcluster_loaner(): - upload_html_report(args.output_dir) - - -if __name__ == "__main__": - main() diff --git a/report/requirements.txt b/report/requirements.txt deleted file mode 100644 index fcb8f67af..000000000 --- a/report/requirements.txt +++ /dev/null @@ -1,3 +0,0 @@ -python-magic==0.4.15 -taskcluster==24.3.1 -tenacity==6.0.0 diff --git a/report/setup.py b/report/setup.py deleted file mode 100644 index 8b11f4138..000000000 --- a/report/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- 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("https://"): - params = { - p[: p.index("=")]: p[p.index("=") + 1 :] - for p in line.split("#")[1].split("&") - } - line = params["egg"] - 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="firefox-code-coverage", - version=VERSION, - description="Code Coverage Report generator for Firefox", - author="Mozilla Release Management Analysis (sallt)", - author_email="release-mgmt-analysis@mozilla.com", - url="https://github.com/mozilla/code-coverage", - tests_require=read_requirements("test-requirements.txt"), - install_requires=read_requirements("requirements.txt"), - packages=setuptools.find_packages(), - include_package_data=True, - zip_safe=False, - license="MPL2", - entry_points={ - "console_scripts": [ - "firefox-code-coverage = firefox_code_coverage.codecoverage:main" - ] - }, -) diff --git a/report/test-requirements.txt b/report/test-requirements.txt deleted file mode 100644 index b72fce9ec..000000000 --- a/report/test-requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -setuptools==41.4.0 -wheel==0.33.6 diff --git a/report/tests/__init__.py b/report/tests/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/report/tests/test.py b/report/tests/test.py deleted file mode 100644 index 48fb555ab..000000000 --- a/report/tests/test.py +++ /dev/null @@ -1,163 +0,0 @@ -# -*- 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 errno -import os -import shutil -import tempfile -import unittest -from datetime import timedelta - -from firefox_code_coverage import codecoverage - - -class Test(unittest.TestCase): - @classmethod - def tearDownClass(cls): - for d in ["report", "ccov-artifacts", "lcov", "lcov-bin"]: - shutil.rmtree(d, ignore_errors=True) - - for f in ["grcov", "grcov_ver", "output.info"]: - try: - os.remove(f) - except OSError as e: - if e.errno != errno.ENOENT: - raise e - - def test(self): - task_id = codecoverage.get_last_task() - self.assertTrue(task_id) - - task_data = codecoverage.get_task_details(task_id) - self.assertEqual(task_data["metadata"]["name"], "Gecko Decision Task") - - revision = task_data["payload"]["env"]["GECKO_HEAD_REV"] - task_id_2 = codecoverage.get_task("mozilla-central", revision) - self.assertEqual(task_id, task_id_2) - - artifacts = codecoverage.get_task_artifacts(task_id) - chosen_artifact = None - for artifact in artifacts: - if artifact["name"] == "public/target-tasks.json": - chosen_artifact = artifact - self.assertIsNotNone(chosen_artifact) - - tasks = codecoverage.get_tasks_in_group(task_data["taskGroupId"]) - self.assertIsInstance(tasks, list) - - try: - os.mkdir("ccov-artifacts") - except OSError as e: - if e.errno != errno.EEXIST: - raise e - - codecoverage.download_artifact(task_id, chosen_artifact, "ccov-artifacts") - self.assertTrue(os.path.exists("ccov-artifacts/%s_target-tasks.json" % task_id)) - os.remove("ccov-artifacts/%s_target-tasks.json" % task_id) - - artifact_paths = codecoverage.download_coverage_artifacts( - task_id, "gtest-1proc", None, "ccov-artifacts" - ) - self.assertEqual( - len([a for a in os.listdir("ccov-artifacts") if "grcov" in a]), 2 - ) - self.assertEqual( - len([a for a in os.listdir("ccov-artifacts") if "jsvm" in a]), 2 - ) - self.assertEqual(len([a for a in artifact_paths if "grcov" in a]), 2) - self.assertEqual(len([a for a in artifact_paths if "jsvm" in a]), 2) - - artifact_paths = codecoverage.download_coverage_artifacts( - task_id, "cppunit-1proc", None, "ccov-artifacts" - ) - self.assertEqual( - len([a for a in os.listdir("ccov-artifacts") if "grcov" in a]), 4 - ) - self.assertEqual( - len([a for a in os.listdir("ccov-artifacts") if "jsvm" in a]), 4 - ) - self.assertEqual(len([a for a in artifact_paths if "grcov" in a]), 2) - self.assertEqual(len([a for a in artifact_paths if "jsvm" in a]), 2) - - codecoverage.download_grcov() - codecoverage.generate_report("./grcov", "lcov", "output.info", artifact_paths) - self.assertTrue(os.path.exists("output.info")) - - codecoverage.generate_report("./grcov", "html", "report_html", artifact_paths) - self.assertTrue(os.path.isdir("report_html")) - self.assertTrue(os.path.exists("report_html/index.html")) - self.assertTrue(os.path.exists("report_html/grcov.css")) - - def test_suite_name_from_task_name(self): - cases = [ - ("test-linux1804-64-ccov/opt-cppunit-1proc", "cppunit"), - ("test-linux64-ccov/opt-gtest", "gtest"), - ("test-linux64-ccov/opt-jsreftest-1", "jsreftest"), - ( - "test-linux64-ccov/opt-mochitest-devtools-chrome-e10s-10", - "mochitest-devtools-chrome", - ), - ("test-linux64-ccov/opt-mochitest-clipboard", "mochitest-clipboard"), - ("test-linux64-ccov/opt-reftest-no-accel-e10s-5", "reftest-no-accel"), - ("test-linux64-ccov/opt-mochitest-5", "mochitest"), - ("test-windows10-64-ccov/debug-mochitest-5", "mochitest"), - ("test-windows10-64-ccov/debug-cppunit", "cppunit"), - ("build-linux64-ccov/opt", "build"), - ("build-android-test-ccov/opt", "build"), - ("build-win64-ccov/debug", "build"), - ] - for c in cases: - self.assertEqual(codecoverage.get_suite(c[0]), c[1]) - - def test_download_grcov(self): - codecoverage.download_grcov() - self.assertTrue(os.path.exists("grcov")) - self.assertTrue(os.path.exists("grcov_ver")) - - with open("grcov_ver", "r") as f: - ver = f.read() - - # grcov is downloaded again if the executable doesn't exist. - os.remove("grcov") - codecoverage.download_grcov() - self.assertTrue(os.path.exists("grcov")) - self.assertTrue(os.path.exists("grcov_ver")) - - # grcov isn't downloaded again if the executable exists and the version is the same. - with open("grcov", "w") as f: - f.write("prova") - - codecoverage.download_grcov() - - with open("grcov", "r") as f: - self.assertEqual("prova", f.read()) - - # grcov is overwritten if the version changes. - with open("grcov_ver", "w") as f: - f.write("v0.0.0") - - codecoverage.download_grcov() - - self.assertTrue(os.path.getsize("grcov") > 5) - with open("grcov_ver", "r") as f: - self.assertEqual(ver, f.read()) - - def test_upload_report(self): - - # Can only run on Taskcluster - if "TASK_ID" not in os.environ: - return - - _dir = tempfile.mkdtemp() - - with open(os.path.join(_dir, "report.html"), "w") as f: - f.write("This is a test") - - codecoverage.upload_html_report(str(_dir), ttl=timedelta(days=1)) - - -if __name__ == "__main__": - unittest.main() diff --git a/tools/code_coverage_tools/__init__.py b/tools/code_coverage_tools/__init__.py deleted file mode 100644 index 804d1b0bf..000000000 --- a/tools/code_coverage_tools/__init__.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- - -COVERAGE_EXTENSIONS = [ - # C - "c", - "h", - # C++ - "cpp", - "cc", - "cxx", - "hh", - "hpp", - "hxx", - # JavaScript - "js", - "jsm", - "xul", - "xml", - "html", - "xhtml", - # Rust - "rs", -] diff --git a/tools/code_coverage_tools/gcp.py b/tools/code_coverage_tools/gcp.py deleted file mode 100644 index 6aff4fc97..000000000 --- a/tools/code_coverage_tools/gcp.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- coding: utf-8 -*- -from google.cloud import storage as gcp_storage -from google.oauth2.service_account import Credentials - - -def get_bucket(service_account): - """ - Build a Google Cloud Storage client & bucket - from Taskcluster secret - """ - assert isinstance(service_account, dict) - - # Load credentials from Taskcluster secret - if "bucket" not in service_account: - raise KeyError("Missing bucket in GOOGLE_CLOUD_STORAGE") - bucket = service_account["bucket"] - - # Use those credentials to create a Storage client - # The project is needed to avoid checking env variables and crashing - creds = Credentials.from_service_account_info(service_account) - client = gcp_storage.Client(project=creds.project_id, credentials=creds) - - return client.get_bucket(bucket) diff --git a/tools/code_coverage_tools/log.py b/tools/code_coverage_tools/log.py deleted file mode 100644 index 4b34771e9..000000000 --- a/tools/code_coverage_tools/log.py +++ /dev/null @@ -1,124 +0,0 @@ -# -*- 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 os - -import logbook -import logbook.more -import raven -import raven.handlers.logbook -import structlog - - -class UnstructuredRenderer(structlog.processors.KeyValueRenderer): - def __call__(self, logger, method_name, event_dict): - event = None - if "event" in event_dict: - event = event_dict.pop("event") - if event_dict or event is None: - # if there are other keys, use the parent class to render them - # and append to the event - rendered = super(UnstructuredRenderer, self).__call__( - logger, method_name, event_dict - ) - return f"{event} ({rendered})" - else: - return event - - -def setup_papertrail(project_name, channel, PAPERTRAIL_HOST, PAPERTRAIL_PORT): - """ - Setup papertrail account using taskcluster secrets - """ - - # Setup papertrail - papertrail = logbook.SyslogHandler( - application_name=f"code-coverage/{channel}/{project_name}", - address=(PAPERTRAIL_HOST, int(PAPERTRAIL_PORT)), - level=logbook.INFO, - format_string="{record.time} {record.channel}: {record.message}", - bubble=True, - ) - papertrail.push_application() - - -def setup_sentry(name, channel, dsn): - """ - Setup sentry account using taskcluster secrets - """ - - # Detect environment - task_id = os.environ.get("TASK_ID") - if task_id is not None: - site = "taskcluster" - elif "DYNO" in os.environ: - site = "heroku" - else: - site = "unknown" - - sentry_client = raven.Client( - dsn=dsn, - site=site, - name=name, - environment=channel, - release=raven.fetch_package_version(f"code-coverage-{name}"), - ) - - if task_id is not None: - # Add a Taskcluster task id when available - # It will be shown in the Additional Data section on the dashboard - sentry_client.context.merge({"extra": {"task_id": task_id}}) - - sentry_handler = raven.handlers.logbook.SentryHandler( - sentry_client, level=logbook.WARNING, bubble=True - ) - sentry_handler.push_application() - - -def init_logger( - project_name, - channel=None, - level=logbook.INFO, - PAPERTRAIL_HOST=None, - PAPERTRAIL_PORT=None, - sentry_dsn=None, -): - - if not channel: - channel = os.environ.get("APP_CHANNEL") - - # Output logs on stderr, with color support on consoles - fmt = "{record.time} [{record.level_name:<8}] {record.channel}: {record.message}" - handler = logbook.more.ColorizedStderrHandler(level=level, format_string=fmt) - handler.push_application() - - # Log to papertrail - if channel and PAPERTRAIL_HOST and PAPERTRAIL_PORT: - setup_papertrail(project_name, channel, PAPERTRAIL_HOST, PAPERTRAIL_PORT) - - # Log to senty - if channel and sentry_dsn: - setup_sentry(project_name, channel, sentry_dsn) - - def logbook_factory(*args, **kwargs): - # Logger given to structlog - logbook.compat.redirect_logging() - return logbook.Logger(level=level, *args, **kwargs) - - # Setup structlog over logbook, with args list at the end - processors = [ - structlog.stdlib.PositionalArgumentsFormatter(), - structlog.processors.StackInfoRenderer(), - structlog.processors.format_exc_info, - UnstructuredRenderer(), - ] - - structlog.configure( - context_class=structlog.threadlocal.wrap_dict(dict), - processors=processors, - logger_factory=logbook_factory, - wrapper_class=structlog.stdlib.BoundLogger, - cache_logger_on_first_use=True, - ) diff --git a/tools/requirements.txt b/tools/requirements.txt deleted file mode 100644 index 600313a92..000000000 --- a/tools/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -aiohttp==3.6.2 -async-timeout==3.0.1 -logbook==1.5.3 -raven==6.10.0 -structlog==20.1.0 -taskcluster==34.0.1 diff --git a/tools/setup.py b/tools/setup.py deleted file mode 100644 index 48e04cca7..000000000 --- a/tools/setup.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- 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))) - - -setuptools.setup( - name="code-coverage-tools", - version="0.1.0", - description="Support tools for Mozilla code coverage", - author="Mozilla Release Management", - author_email="release-mgmt-analysis@mozilla.com", - install_requires=read_requirements("requirements.txt"), - packages=setuptools.find_packages(), - include_package_data=True, - zip_safe=False, - license="MPL2", -)